mirror of
https://github.com/tmate-io/tmate-ssh-server.git
synced 2020-11-18 19:53:51 -08:00
9 lines
229 B
Bash
9 lines
229 B
Bash
# $Id: fix-ids.sh,v 1.2 2009-06-25 16:34:50 nicm Exp $
|
|
|
|
for i in *.[ch] tmux.1; do
|
|
(head -1 $i|grep '$OpenBSD' >/dev/null) || continue
|
|
mv $i $i~ || exit
|
|
sed 's/\$OpenBSD.* \$/$\Id $/' $i~ >$i || exit
|
|
echo $i
|
|
done
|