2011年5月5日星期四

unix one liner - delete a list of files

You may need to delete some files with a general pattern in their names. Here, the unix command:

find -name deletion_pattern.txt | xargs rm

you could substitute "deletion_pattern.txt" with a general pattern of your files needed to be delete.

没有评论:

发表评论