17 lines
136 B
Bash
Executable File
17 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
#remaster lib
|
|
[ -d "<LIBDIR>" ] || { echo "LIBDIR not exist"; exit 1; }
|
|
|
|
|
|
|
|
## ...
|
|
|
|
|
|
|
|
|
|
|
|
[ -n "$1" ] && {
|
|
echo param
|
|
$1
|
|
}
|