On Friday 05 March 2004 13:38, [EMAIL PROTECTED] wrote:
> In /target/var/cache/apt/archives I found packages with character sequence
> "1%3a" in its name.

This sequence is caused when you download packages. Colons (':') are changed 
to '%3a'.
Try the script below to rename files back to their original names.

#!/bin/bash
# Replace '%3a' in names of packages by ':'
echo "Renaming any packages containing %..."
for file in `find . -name *%3a*.deb`
do
        newfile=`echo $file | sed "s/%3a/:/g"`
        mv -v $file $newfile
done


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to