Initial commit
This commit is contained in:
commit
d3c6e29902
202 changed files with 3909 additions and 0 deletions
16
replace_prefix
Executable file
16
replace_prefix
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
# Author: Nico Schottelius <nico AT schottelius DOT org>
|
||||
# Date: 14th of February 2002
|
||||
#
|
||||
|
||||
if [ $# -ne 2 ]; then
|
||||
echo `basename $0`': prefix file'
|
||||
echo 'Hey, hey guy, what to convert ?'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# something other programs do not use
|
||||
G_STR=".`date +%s%M%U`-`basename $0`-`basename $2`"
|
||||
|
||||
cat $2 | sed "s,\(^prefix.*=\).*,\1 $1,g" > $G_STR
|
||||
mv $G_STR $2
|
||||
Loading…
Add table
Add a link
Reference in a new issue