mirror of
https://github.com/tmux/tmux.git
synced 2024-11-04 18:08:48 +00:00
9 lines
180 B
Bash
9 lines
180 B
Bash
# $Id$
|
|
|
|
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
|