Added plugin to individually compress a dir of files
parent
814b4bc53a
commit
af402cc6f0
|
|
@ -175,6 +175,11 @@ command_exists ()
|
||||||
type "$1" &> /dev/null ;
|
type "$1" &> /dev/null ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
batch_zip ()
|
||||||
|
{
|
||||||
|
for f in *; do zip "${f%%.*}.zip" "$f"; done
|
||||||
|
}
|
||||||
|
|
||||||
# useful for administrators and configs
|
# useful for administrators and configs
|
||||||
buf ()
|
buf ()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue