mirror of
https://github.com/tonydamage/nux-env.git
synced 2025-12-11 13:24:28 +01:00
14 lines
156 B
Bash
Executable file
14 lines
156 B
Bash
Executable file
#!/bin/sh
|
|
|
|
##
|
|
## Creates cbz archive from supplied folder.
|
|
##
|
|
SCRIPT_PATH=$1
|
|
FILENAME=$(basename $1)
|
|
|
|
echo $FILENAME
|
|
grep "\#\#" $1 | cut -d\# -f3-
|
|
echo
|
|
|
|
|
|
|