Now, the problem is how to handle lots of rar files. One way is to using Xwindows environment. You may use your mouse to select all files and right click uncompress. The other way is to use command:
$ for f in `ls --color=none`; do rar x $f; done
It loops through all files under current directory and pass it to rar program to extract the rar file. rar is the program name, x is the parameter meaning that this is a extraction and $f is the file name
No comments:
Post a Comment