How to move ( mv ) a file that have space and special character - linux command
file.txt contains are.
04 Security @test.pdf
05 Security @test.pdf
my command are below:
cat $DIR/file.txt | read line; do
mv $line ""$line{//[ ()@$]/_}" /$DIR/OUT done
Your expertise really appreciated,