I run that and it change the ownership in everyfile containing 208 to root, but i want to keep it as the current owner, how can i do this?
files=`grep -r 162 * -l | grep -v convert`
for ii in $files; do
echo "Processing $ii"
sed -e "s/162/208/" $ii >$ii.tmp;mv $ii.tmp $ii
done
files=`grep -r 162 * -l | grep -v convert`
for ii in $files; do
echo "Processing $ii"
sed -e "s/162/208/" $ii >$ii.tmp;mv $ii.tmp $ii
done