일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 하모니카
- 아틀라시안
- node
- 우분투
- 자바
- JS
- DB
- 자바스크립트
- 3.0
- postgres
- Windows
- python
- 설치
- hamonikr
- Linux
- DATABASE
- install
- 설정
- ubuntu
- 노드
- 파이썬
- 윈도우
- 데이터베이스
- javascript
- script
- 리눅스
- PostgreSQL
- Atlassian
- java
- 스크립트
- Today
- Total
목록개발 (86)
LukeHan 의 잡다한 기술 블로그
1일(24시간) 내에 변경된 파일 찾기 find ./ -type f -mtime -1 변경된지 1일 넘게 지난 파일 찾기 find / -type f -mtime +1 접근된(accessd) 시간은 -amin 혹은 -atime 를 이용한다. 10분 내에 접근된 파일 찾기 find / -type f -amin -10 1일 내에 접근된 파일 찾기 find / -type f -atime -1 /tomcat/test 폴더에서 10일 내로 변경된 파일목록 상세하게 목록으로 보여주기 find /tomcat/test -type f -mtime -10 -ls 현재위치 및 하위 폴더에서 5일 이내로 변경된 확장자명이 jsp 인 파일 목록 출력 find . -name '*.jsp' -mtime -5 (생략해도 되지만 -pr..
사용자 이름으로 실행중인 프로세스 찾기 ps -U user-name -o comm= | sort | uniq pgrep -lU user-name | awk '{print $2}' | sort | uniq rdp smile-user@invesumedemo-92034:~$ ps -ef | grep rdp root 897 1 0 3월10 ? 00:00:00 /usr/sbin/xrdp-sesman xrdp 915 1 0 3월10 ? 00:00:03 /usr/sbin/xrdp xrdp 6391 915 0 01:01 ? 00:00:29 /usr/sbin/xrdp root 6392 897 0 01:01 ? 00:00:00 /usr/sbin/xrdp-sesman smile-u+ 6394 6392 0 01:01 ? 00..
폴더 확인 import os # 사용 os.path.isdir(path) # 있는 경우 반환값 True # 없는 경우 반환값 False # 파일을 찾는 경우 반환값 # ex) os.path.isdir("/home/ubuntu/temp.txt") False 파일 확인 import os # 사용 os.path.isfile(path) # 있는 경우 반환값 True # 없는 경우 반환값 False 폴더 생성 import os def createFolder(directory): try: if not os.path.exists(directory): os.makedirs(directory) except OSError: print('Err : Creating directory. ' + directory) createF..
#!/usr/bin/python3 import socket def fnt_internet(self, host, port, timeout): try: socket.setdefaulttimeout(timeout) socket.socket(socket.AF_INET, socket.SOCK_STREAM).connect((host, port)) return True except Exception as ex: print(ex) return False print(fnt_internet("8.8.8.8", 80, 3))
참고 https://gomguard.tistory.com/122 https://wayhome25.github.io/python/2017/02/26/py-12-exception/ # try-except 문 def safe_pop_print(list, index): try: print(list.pop(index)) except IndexError: print('{} index의 값을 가져올 수 없습니다.'.format(index)) safe_pop_print([1,2,3], 5) # 5 index의 값을 가져올 수 없습니다. # if 문 def safe_pop_print(list, index): if index < len(list): print(list.pop(index)) else: print('{} in..