특정날짜 이전파일 삭제 스크립트 적당히 알아서 수정해서 쓸 것. #!/bin/sh echo "Input target directory (ex. /home) : \c" read DIR echo "A few days ago do you want to delete the file? (ex. 5) : \c" read N_DAY find $DIR -mtime +$N_DAY -exec rm {} \; IT/Unix 2011.05.09