Useful tricks when using the find command on Linux and backticks.

Using the Linux command-line allows a lot of flexibility when running commands and how they are run. Take the example below for instance. rm `find ./ -name "*~"`rm `find ./ -name "*~"` This command runs a command within backticks and outputs the result as an argument to the rm command. This command will therefore delete … Read more