Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
f1d12c59
Commit
f1d12c59
authored
Jul 05, 2013
by
Neal
Committed by
Neal Patel
Feb 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add .ipsw to the extract plugin.
parent
ef7e53a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
_extract
plugins/extract/_extract
+1
-1
extract.plugin.zsh
plugins/extract/extract.plugin.zsh
+5
-5
No files found.
plugins/extract/_extract
View file @
f1d12c59
...
@@ -3,6 +3,6 @@
...
@@ -3,6 +3,6 @@
_arguments \
_arguments \
'(-r --remove)'{-r,--remove}'[Remove archive.]' \
'(-r --remove)'{-r,--remove}'[Remove archive.]' \
"*::archive file:_files -g '(#i)*.(tar|tgz|tbz|tbz2|txz|tlz|gz|bz2|xz|lzma|Z|zip|rar|7z|deb)(-.)'" && return 0
"*::archive file:_files -g '(#i)*.(tar|tgz|tbz|tbz2|txz|tlz|gz|bz2|xz|lzma|Z|zip|
ipsw|
rar|7z|deb)(-.)'" && return 0
plugins/extract/extract.plugin.zsh
View file @
f1d12c59
...
@@ -23,7 +23,7 @@ function extract() {
...
@@ -23,7 +23,7 @@ function extract() {
remove_archive
=
1
remove_archive
=
1
if
[[
"
$1
"
==
"-r"
]]
||
[[
"
$1
"
==
"--remove"
]]
;
then
if
[[
"
$1
"
==
"-r"
]]
||
[[
"
$1
"
==
"--remove"
]]
;
then
remove_archive
=
0
remove_archive
=
0
shift
shift
fi
fi
...
@@ -52,7 +52,7 @@ function extract() {
...
@@ -52,7 +52,7 @@ function extract() {
(
*
.xz
)
unxz
"
$1
"
;;
(
*
.xz
)
unxz
"
$1
"
;;
(
*
.lzma
)
unlzma
"
$1
"
;;
(
*
.lzma
)
unlzma
"
$1
"
;;
(
*
.Z
)
uncompress
"
$1
"
;;
(
*
.Z
)
uncompress
"
$1
"
;;
(
*
.zip|
*
.war|
*
.jar|
*
.sublime-package
)
unzip
"
$1
"
-d
$extract_dir
;;
(
*
.zip|
*
.war|
*
.jar|
*
.sublime-package
|
*
.ipsw
)
unzip
"
$1
"
-d
$extract_dir
;;
(
*
.rar
)
unrar x
-ad
"
$1
"
;;
(
*
.rar
)
unrar x
-ad
"
$1
"
;;
(
*
.7z
)
7za x
"
$1
"
;;
(
*
.7z
)
7za x
"
$1
"
;;
(
*
.deb
)
(
*
.deb
)
...
@@ -64,10 +64,10 @@ function extract() {
...
@@ -64,10 +64,10 @@ function extract() {
cd
..
;
rm
*
.tar.gz debian-binary
cd
..
;
rm
*
.tar.gz debian-binary
cd
..
cd
..
;;
;;
(
*
)
(
*
)
echo
"extract: '
$1
' cannot be extracted"
1>&2
echo
"extract: '
$1
' cannot be extracted"
1>&2
success
=
1
success
=
1
;;
;;
esac
esac
((
success
=
$success
>
0 ?
$success
:
$?
))
((
success
=
$success
>
0 ?
$success
:
$?
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment