Skip to content

Commit

Permalink
use -v with mv(1) and cp(1)
Browse files Browse the repository at this point in the history
  • Loading branch information
phillbush committed Jan 10, 2023
1 parent 1343269 commit 39b16e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xfilesctl
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ dirmenu() {
)" in
("copy")
msg="copy"
"$cmd" cp "$@"
"$cmd" "cp -v" "$@"
;;
("move")
msg="move"
"$cmd" mv "$@"
"$cmd" "mv -v" "$@"
;;
("link")
msg="link"
Expand Down Expand Up @@ -115,11 +115,11 @@ case "$cmd" in
;;
("drop-copy")
msg="copy"
drop cp "$@"
drop "cp -v" "$@"
;;
("drop-move")
msg="move"
drop mv "$@"
drop "mv -v" "$@"
;;
("drop-link")
msg="link"
Expand Down

0 comments on commit 39b16e3

Please sign in to comment.