Cheatsheet & Examples: xargs
xargs is a command-line utility that builds and executes commands from standard input. It reads items from stdin and executes a command with those items as arguments.
Run a command on each input item
Example Usage:xargs -I {} rm {}What it does:Exec...
tech.mrleong.net4 min read