3 useful commands when you have a large amount of files to delete in case you’ve reached the inode limit or just want to remove them.
view inode usage
df -i
how many files?
ls -U1 | wc -l
Remove a folder containing these files
rm -fr folder/* or pattern like rm -fr folder/sess_*
The post Removing large amount of files (argument list too long) appeared first on An authentic perspective.