mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
268 B

#!/bin/bash
if [ ! "$1" -o ! "$2" ] ; then
echo "You must specify old and new version ..."
exit -1
fi
for x in kde* ; do
echo "Updateing $x ..."
sed -e s,$1,$2,g \
-e "s/\[D\] [0-9]* /\[D\] 0 /" $x/$x.desc > $x/$x.desc.new
mv $x/$x.desc.new $x/$x.desc
done