AutoYADM commit: 2025-03-26 18:45:07

This commit is contained in:
Daniel Fichtinger 2025-03-26 18:45:07 -04:00
parent de93c67826
commit 1f2f8b9dab
2 changed files with 4 additions and 6 deletions

View file

@ -17,8 +17,3 @@
Tag = ["python", "scratch"]
command = "rm -f /tmp/tmp.*.py"
[[Snippets]]
Description = "Rename"
Output = ""
Tag = []
command = "mv <from> \"${$(realpath <from>)%%$(basename <from>)}<to>\""

View file

@ -1,8 +1,11 @@
#!/bin/env zsh
# utility to easily rename a file without
# having to type out its path twice
function ren {
from="$1"
to="$2"
DIR="${$(realpath "$from")%%$(basename "$from")}"
# echo "$DIR"
echo "$(realpath "$from")" "$DIR$to"
mv "$(realpath "$from")" "$DIR$to"
echo "Moved $(realpath "$from") to $DIR$to"
}