Reaching out to others! Free & Open Source Software, Kannada, L10n, L18n Data Science, Cloud Computing & more…

Xargs answers “Too Many Arguments” Problem

linux, QuickFix, Technical | 0 comments

Unable to remove huge list of session files found in /tmp? Never mind. Use xargs. Yes, its simple and you can quickly learn lots of one liners while working on console. Check the quick solution given below:

find . -type f -name "_sess*" -exec rm {} \; -print

Did you like it? Then learn few more one lines while you read Ed Schaefer‘s extensive documentation on “Using the xargs Command

Related Articles

Related