12 lines
170 B
Bash
12 lines
170 B
Bash
#!/bin/bash
|
|
#remaster lib
|
|
[ -d "<LIBDIR>" ] || { echo "LIBDIR not exist"; exit 1; }
|
|
|
|
#beginn func
|
|
|
|
|
|
#this func is standalone executable
|
|
[ -n "$1" ] && {
|
|
check_user
|
|
}
|