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

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

target="$(selectPathFzf.sh "Copy to: ")"
cp "$@" "$target"