How to extract all the files in the given Folder
I want to extract all the files in the given Folder
This is the code which extract all the bzip files in the current folder. if you have other format , change bzip2 to the exact command.
Code:
for vFileName in *.*; do
echo $vFileName;
bzip2 -d $vFileName;
done;
Groups: