aboutsummaryrefslogtreecommitdiff
path: root/move.sh
blob: fd0861a578cdb105845c2b3b1d6b7d75068ee8e4 (plain)
1
2
3
4
5
6
#!/bin/sh

# Receives filenames as arguments and moves them to a folder selected with fzf

target="$(selectPathFzf.sh "Move to: ")"
mv "$@" "$target"