mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
6 lines
89 B
Plaintext
6 lines
89 B
Plaintext
|
#!/bin/sh
|
||
|
from=$(lastpic)
|
||
|
to="$PWD/$1"
|
||
|
mv "$from" "$to"
|
||
|
printf "From: $from\nTo: $to"
|