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