Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
bcc235e1
Commit
bcc235e1
authored
14 years ago
by
Robin Ramael
Committed by
SuprDewd
14 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Added an option to remove file afterwards.
parent
f0136f2a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/functions.zsh
+13
-0
lib/functions.zsh
with
13 additions
and
0 deletions
+13
-0
lib/functions.zsh
View file @
bcc235e1
...
@@ -39,6 +39,12 @@ function take() {
...
@@ -39,6 +39,12 @@ function take() {
}
}
function
extract
()
{
function
extract
()
{
unset
REMOVE_ARCHIVE
if
test
"
$1
"
=
"-r"
;
then
REMOVE
=
1
shift
fi
if
[[
-f
$1
]]
;
then
if
[[
-f
$1
]]
;
then
case
$1
in
case
$1
in
*
.tar.bz2
)
tar
xvjf
$1
;;
*
.tar.bz2
)
tar
xvjf
$1
;;
...
@@ -56,7 +62,14 @@ function extract() {
...
@@ -56,7 +62,14 @@ function extract() {
*
.7z
)
7z x
$1
;;
*
.7z
)
7z x
$1
;;
*
)
echo
"'
$1
' cannot be extracted via >extract<"
;;
*
)
echo
"'
$1
' cannot be extracted via >extract<"
;;
esac
esac
if
[[
$REMOVE_ARCHIVE
-eq
1
]]
;
then
echo
removing
"
$1
"
;
/bin/rm
"
$1
"
;
fi
else
else
echo
"'
$1
' is not a valid file"
echo
"'
$1
' is not a valid file"
fi
fi
}
}
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help