diff --git a/cheat/cheatsheets/mv b/cheat/cheatsheets/mv index a3f5f19..5a79545 100644 --- a/cheat/cheatsheets/mv +++ b/cheat/cheatsheets/mv @@ -12,3 +12,6 @@ mv -i ~/Desktop/foo.txt ~/Documents/foo.txt # Move a file from one place to another but never overwrite anything # (This will override any previous -f or -i args) mv -n ~/Desktop/foo.txt ~/Documents/foo.txt + +# Move listed files to a directory +mv -t ~/Desktop/ file1 file2 file3