실수로 특수문자가 파일이름에 들어갔을때 지워지지가 않는다. 이럴때 하는 방법
지우려는 파일이 --weirdname이라면

# ls -i
115118 --weirdname

# find . -inum 115118 -exec rm -f {} \;

하면 지워진다.

참고 : http://cafe.naver.com/lrisconsulting.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=421

+ Recent posts