일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 3.0
- Atlassian
- 노드
- 아틀라시안
- JS
- PostgreSQL
- 설치
- javascript
- 우분투
- DATABASE
- install
- 스크립트
- node
- postgres
- ubuntu
- 파이썬
- DB
- 설정
- python
- Linux
- script
- Windows
- 리눅스
- 자바
- 윈도우
- 하모니카
- hamonikr
- java
- 데이터베이스
- 자바스크립트
- Today
- Total
목록개발/Bash Script (3)
LukeHan 의 잡다한 기술 블로그
nohup update.sh jenkins 에서 위와 같이 nohup 으로 실행 시 job이 끝나지 않는 경우가 발생하였다. nohup update.sh > /dev/null 2>&1 & 위와 같이 output 을 모두 redirect 하여 스크립트가 종료될 수 있도록 설정을 변경한다. 참고 : https://goateedev.tistory.com/48
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..