How to delete a file on the 'shell'?
ok.. rm -rf <dir> is for directory.... how about file?
Same syntax. e.g.
rm -f filename.tar.gz
thanks!! how about rename?
mv filename.tar.gz newfile.tar.gz
or to move to a folder as well mv /root/filename.tar.gz /usr/src/newfile.tar.gz
thanks!!!