ctrl+z 로 일시정지된 프로세스 돌아가기
ctrl+z 의 기능은 해당 프로세스를 일시 정지하는 것이다.
일시정지된 프로세스를 보는 방법
$ jobs
일시정지된 프로세스를 foreground 로 돌리는 방법
$ fg
일시정지된 프로세스를 background 로 돌리는 방법 ( 이 것은 program & 와 같이 & 를 붙여 실행하는 것과 같다 )
$ bg
find 명령어
find . -type f -newerct 2022-03-01 2022-03-01 이후에 만들어진 파일 찾기
find . -type f ! -newerct 2022-03-01 2022-03-01 이전에 만들어진 파일 찾기
newerct newermt newerat
find . -type f -mtime +30 만들어진지 30일이 더 지난 파일 찾기
find . -type f -mtime -30 만들어진지 30일이 안 된 파일 찾기
mtime : make ctime : changed atime : access
-mmin 분 단위 조건
find / -name *.cpp -exec ls -al {} \ ; 2>/dev/null
find . -name *.png | xargs tar -cvf zip.tar
시간이 UTC0 기준이네?
timedatectl # 현재 시간대 확인 sudo timedatectl set-timezone Asia/Seoul # 시간대 변경