mirror of
https://github.com/notwa/rc
synced 2024-11-05 04:29:03 -08:00
9 lines
147 B
Text
9 lines
147 B
Text
|
#!/usr/bin/env sh
|
||
|
# YES_ZSH
|
||
|
|
||
|
baknow() {
|
||
|
cp -ip "${1:?missing file argument}" "$1.$(now "$1").bak"
|
||
|
}
|
||
|
|
||
|
[ "${SOURCING:-0}" -gt 0 ] || baknow "$@"
|