Files & Folders
$ cp [fileName] [newFileName] $ cat [fileName] > [newFileName] $ dd if=[fileName] of=[newFileName]
$ mv [fileName] [newFileName]
$ ln [fileOrigin] [linkDest]
$ grep [phrase] [fileName]
$ mount /dev/[device] [path]
$ watch -d -n 2 'df; ls -FlAt;'
$ ls -l ~/.local/share/Trash/files
$ rm -r ~/.local/share/Trash
$ chmod [permission] [file]
$ ln -s [target] [linkName]
Copied to clipboard