Created
August 19, 2019 01:34
-
-
Save geunho/7c03ec8233fb56e342c67ee660912ee6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# remove_old_files.sh /path/of/root 90 | |
# | |
# 오래된 파일을 삭제한다. | |
########################################## | |
$root_path=$1 | |
$days_past=$2 | |
find $root_path -type d -ctime +$days_past | xargs rm -rf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.