cd9bd78ec0b367546d7d5e32dc6b59f9f210ce75
[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 ) ar x "$x" ;;
40 *.dsc) dpkg-source -x "$x" ;;
41 *.gz ) gunzip "$x" ;;
42 *.iso )
43 local super
44 if [[ $EUID != 0 ]]; then
45 super=sudo
46 fi
47 local temp_dir=$(mktemp -d)
48 $super losetup -f
49 $super mount -o loop "$x" "$temp_dir"
50 local dir="${x%%.iso}"
51 mkdir "$dir"
52 cp -a "$temp_dir"/* "$dir"
53 $super umount "$temp_dir"
54 ;;
55 *.jar) jar xf "$x" ;;
56 *.r[0-9][0-9]|*.rar ) unrar x "$x" ;;
57 *.rpm ) rpm2cpio "$x" | cpio --extract --make-directories ;;
58 *.sfs) $super unsquashfs "$x" ;;
59 *.Z ) uncompress "$x" ;;
60 *.zip|*.xpi ) unzip "$x" ;;
61
62 *) echo "I don't know how to extract $x";;
63 esac
64 done
65 }
66 ex "$@"