git.nynim.org
/
dotfiles.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
.vim: Remove pathogen.vim
[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