To Unzip Multiple Files Using Single Quote
The syntax is as follows to unzip multiple files from Linux command line:
unzip '*.zip'
Type the following command as follows:
$ cd /disk2/images/
$ unzip '*.zip'
$ ls -l
Note: *.zip is put in between two single quotes so that shell will not recognize it as a wild card character.
No comments:
Post a Comment