Skip to content

Instantly share code, notes, and snippets.

@passionsjin
Created December 7, 2021 00:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save passionsjin/f1c7451ee89e9b87e05bde0ed3674651 to your computer and use it in GitHub Desktop.
Save passionsjin/f1c7451ee89e9b87e05bde0ed3674651 to your computer and use it in GitHub Desktop.
Bash Cheet Sheet

특정 파일(시간) 파일 삭제

find . -name "*.zip" -ctime +7 -type f -exec rm -f {} \;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment