mirror of
https://github.com/cmur2/joe-syntax.git
synced 2024-11-01 00:56:15 +01:00
12 lines
164 B
Bash
12 lines
164 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
PREFIX="jsf-bundle"
|
||
|
|
||
|
if [[ $1 == "" ]]; then
|
||
|
echo "Number missing!"
|
||
|
exit 1
|
||
|
else
|
||
|
num=$1
|
||
|
fi
|
||
|
|
||
|
tar cvf "${PREFIX}_$num.tar" --exclude="*.part.jsf" *.jsf
|