Skip to content

Commit

Permalink
noop
Browse files Browse the repository at this point in the history
  • Loading branch information
robmiller committed May 15, 2022
1 parent 3a9a865 commit 6ca1fc0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions bin/zmvd
@@ -0,0 +1,15 @@
#!/bin/zsh

set -euo pipefail
autoload -U zmv
IFS=$'\n'

OPS=("${(@f)$(zmv -n $@)}")

function my_mv {
echo $2
}

for op in $OPS; do
ruby -e 'puts ARGV[0]' "$op"
done

0 comments on commit 6ca1fc0

Please sign in to comment.