17 lines
164 B
Bash
Executable File
17 lines
164 B
Bash
Executable File
#!/bin/bash
|
|
#remaster lib
|
|
[ -d "<LIBDIR>" ] || { echo "LIBDIR not exist"; exit 1; }
|
|
|
|
|
|
|
|
## ...
|
|
|
|
|
|
|
|
|
|
|
|
#this func is standalone executable
|
|
[ -n "$1" ] && {
|
|
xrdp $@
|
|
}
|