I am a Postdoctoral Research Fellow with The SUTD-MIT International Design Centre (IDC), Singapore University of Technology and Design (SUTD). My research topic is about protocol and algorithm design, resource allocation and localisation in wireless sensor network, UAV network and Ad Hoc network. I also enjoy the mobile programming (Android and Objective-C) and web server development. Thanks for sharing.
Oct 3, 2012
How to decompress multiple files on Linux
To unzip multiple zipped .zip files:
for file in *.zip; do unzip "${file}"; done
To unzip multiple zipped .gz files;
gunzip *.gz
To unzip multiple zipped .bz2 files;
bunzip2 *.bz2
To extract multiple .tar.gz files;
for file in *.tar.gz; do tar zxf "${file}"; done
To extract multiple .tar.bz2 files;
for file in *.tar.bz2; do tar jxf "${file}"; done
Subscribe to:
Posts (Atom)