From 3fe72a03cc790381bc3fa591439c18867deae865 Mon Sep 17 00:00:00 2001 From: Kevin Woo Date: Sun, 4 Feb 2018 18:57:25 -0800 Subject: [PATCH] new cheat for mv: moving many files into a dir --- cheat/cheatsheets/mv | 3 +++ 1 file changed, 3 insertions(+) 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