]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - bin/orig
.bash_profile: Register id_ed25519 SSH key with ssh-agent, if present
[dotfiles.git] / bin / orig
1 #!/bin/sh
2
3 if [ $# = 0 ] ; then
4 echo "usage: orig FILE ..."
5 echo "copy FILE(s) to FILE.orig"
6 else
7 for f in "$@" ; do
8 cp -p "$f" "$f.orig"
9 done
10 fi