Skip to content

Instantly share code, notes, and snippets.

@VigneshPeriasami
VigneshPeriasami / Ubuntu terminal commands
Created November 24, 2014 08:08
Useful Ubuntu terminal commands
# to copy to clipboard
echo -n "string" | xclip -selection clipboard
# find and delete all matching files from sub directories
find . -name \*~ -type f -delete