I tried to remove around 7,000 log files under a directory by using
rm *.log
but failed with error message "too long argument list" . Is there any way to slove it ?
thanks .
|
feedback
|
|
Try
Note that this will also delete files in subdirectories. To avoid that, add | |||||||||||||||
feedback
|
|
One way:
| |||||||
feedback
|
|
Addon : Using xargs, if there's space within the file name reference the below,
| |||
|
feedback
|
|
ls *.log | xargs -n 1000 rm | |||
feedback
|
|
I think the reason why this problem is with rm/ls and not with find, is because:
also does the job. | |||
feedback
|