u7z v0.1

Download Description : Linux bash script to extract all 7zip archives in current directory.

License : Open Source (GPLv3)
Released : December 12, 2008
Filesize : 225 bytes
Type : Bash Script
OS : Linux (any)
MD5 : 35d234775b6e9086c457410e4c5cf076
Installation : 1. Open terminal
2. Change directory to where you downloaded the file.
3. Type: chmod +x ./u7z.sh (this sets permission)
Usage : — Type: ./u7z.sh (in folder where all 7zip archive files located)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
 
# u7z v0.1 {12/05/2008}
# Coded by EMCGFX 
 
# NOTES: Extract many 001 files at ones.
# change to 7z e if you want to
# extract in current directory.
 
# Un7z *.001 files:
for f7 in *.001
do
  7z x -y "$f7";
done

Leave a comment

You must be logged in to post a comment.