aboutsummaryrefslogtreecommitdiff
path: root/move.sh
diff options
context:
space:
mode:
authorInigoGutierrez <inigogf.95@gmail.com>2019-09-12 17:13:43 +0200
committerInigoGutierrez <inigogf.95@gmail.com>2019-09-12 17:13:43 +0200
commitf0e0e163c16d9b784065d8eda93845141c0a475f (patch)
tree58beb31e4475e6af0786623e1d7bb73de4ab0de6 /move.sh
parentb2c6ecfb7127e8df7c229997ec46c5653ffc5db3 (diff)
downloadscripts-f0e0e163c16d9b784065d8eda93845141c0a475f.tar.gz
scripts-f0e0e163c16d9b784065d8eda93845141c0a475f.zip
Modified copy.sh and move.sh so they work with multiple files.
Diffstat (limited to 'move.sh')
-rwxr-xr-xmove.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/move.sh b/move.sh
index 42b3384..fd0861a 100755
--- a/move.sh
+++ b/move.sh
@@ -1,7 +1,6 @@
#!/bin/sh
-# Receives a filename as argument and moves it to a folder selecting it with fzf
+# Receives filenames as arguments and moves them to a folder selected with fzf
-filename="$1"
target="$(selectPathFzf.sh "Move to: ")"
-mv "$filename" "$target"
+mv "$@" "$target"