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“



