If you have a ton of files in a directory and you need to remove them, but rm says that the “argument list [is] too long”, just use find and xargs:
find . -name ‘filename*’ | xargs rm -vf
Have you tried MySQLTuner yet?
It's free and it makes optimizing your MySQL server easier than ever!
|
If you have a ton of files in a directory and you need to remove them, but rm says that the “argument list [is] too long”, just use find and xargs: find . -name ‘filename*’ | xargs rm -vf Leave a Reply
You must be logged in to post a comment. Login » |