minor fixes
[small-misc-bash] / ex
1 #!/bin/bash
2 # Copyright (C) 2014 Ian Kelling
3
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 ex() {
17 local help="Usage: ex [--help] FILE...
18 Extract many types of files
19
20 Based on their extensions,
21 7z [tar.]bz2 deb [tar.]gz iso dsc rar rpm sfs tar xpi [tar.]xz zip Z.
22 See source for exact file extensions.
23 Note: dtrx (package & command) extracts most of these plus some others."
24
25 if [[ $1 == --help ]]; then
26 echo "$help"
27 fi
28 local x super
29 for x in "$@"; do
30 case "$x" in
31 # tars first, so they are higher pri than non-tar extensions
32 *.tar ) tar xf "$x" ;;
33 *.tar.bz2 | *.tbz2 ) tar xjf "$x" ;;
34 *.tar.gz | *.tgz ) tar xzf "$x" ;;
35 *.tar.xz ) tar Jxf "$x" ;;
36 *.xz) xz -d "$x" ;;
37 *.7z ) 7za x "$x" ;;
38 *.bz2 ) bunzip2 "$x" ;;
39 *.deb )
40 ar x "$x"
41 tar Jxf data.tar.xz
42 tar xzf control.tar.gz
43 rm -f control.tar.gz
44 rm -f data.tar.xz
45 ;;
46 *.dsc) dpkg-source -x "$x" ;;
47 *.gz ) gunzip "$x" ;;
48 *.iso )
49 local super
50 if [[ $EUID != 0 ]]; then
51 super=sudo
52 fi
53 local temp_dir=$(mktemp -d)
54 $super losetup -f
55 $super mount -o loop "$x" "$temp_dir"
56 local dir="${x%%.iso}"
57 mkdir "$dir"
58 cp -a "$temp_dir"/* "$dir"
59 $super umount "$temp_dir"
60 ;;
61 *.jar) jar xf "$x" ;;
62 *.r[0-9][0-9]|*.rar ) unrar x "$x" ;;
63 *.rpm ) rpm2cpio "$x" | cpio --extract --make-directories ;;
64 *.sfs) $super unsquashfs "$x" ;;
65 *.Z ) uncompress "$x" ;;
66 *.zip|*.xpi ) unzip "$x" ;;
67
68 *) echo "I don't know how to extract $x";;
69 esac
70 done
71 }
72 ex "$@"