Develop/Linux
File remove except the last five files
시크라기
2019. 2. 13. 10:44
]$ ls -t | tail -n +6 | xargs rm -rf
with Removed list
]$ ls -t | tail -n +6 && ls -t | tail -n +6 | xargs rm -rf