# ls -lrt 한 후에.. 마지막 10줄 정도의 파일을 지울려면 어떻게 하는지요?
또
# ls -lrt | grep '4 14:52'
이렇게 해서 나오는 파일들을 지울려면 어떻게 하는지요?
감사합니다.
$ ls -lrt | tail -10 | awk '{ print $8 }' | xargs rm -f $ ls -lrt | grep '4 14:52' | awk '{ print $8 }' | xargs rm -f
되면 한다! / feel no sorrow, feel no pain, feel no hurt, there's nothing gained.. only love will then remain.. 『 Mizz 』
참고로, 간단한 경우라면 몰라도, 파일 이름이 공백 문자나 특수 문자를 포함하고 있을 경우, 위와 같은 방식은 제대로 동작하지 않을 수 있습니다.
확실한 방법은 "find ... -print0 | xargs -0 ..."을 쓰거나, "ls -i"로 inode 번호를 알아낸 다음, "find ... -inum ..."을 쓰는 것이 좋습니다.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html Korean Ver: http://cinsk.github.io/cfaqs/
텍스트 포맷에 대한 자세한 정보
<code>
<blockcode>
<apache>
<applescript>
<autoconf>
<awk>
<bash>
<c>
<cpp>
<css>
<diff>
<drupal5>
<drupal6>
<gdb>
<html>
<html5>
<java>
<javascript>
<ldif>
<lua>
<make>
<mysql>
<perl>
<perl6>
<php>
<pgsql>
<proftpd>
<python>
<reg>
<spec>
<ruby>
<foo>
[foo]
음 ..
$ ls -lrt | tail -10 | awk '{ print $8 }' | xargs rm -f
$ ls -lrt | grep '4 14:52' | awk '{ print $8 }' | xargs rm -f
되면 한다! / feel no sorrow, feel no pain, feel no hurt, there's nothing gained.. only love will then remain.. 『 Mizz 』
참고로, 간단한 경우라면 몰라도, 파일 이름이 공백
참고로, 간단한 경우라면 몰라도, 파일 이름이 공백 문자나 특수 문자를 포함하고 있을 경우, 위와 같은 방식은 제대로 동작하지 않을 수 있습니다.
확실한 방법은 "find ... -print0 | xargs -0 ..."을 쓰거나, "ls -i"로 inode 번호를 알아낸 다음, "find ... -inum ..."을 쓰는 것이 좋습니다.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://cinsk.github.io/cfaqs/
댓글 달기