mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-18 00:06:21 +00:00
12 lines
208 B
Bash
Executable file
12 lines
208 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Create base directories
|
|
for dir in vnc config ssh
|
|
do
|
|
[ -d ~/.${dir} ] || mkdir -p ~/.${dir}
|
|
done
|
|
|
|
# Read cli parameters
|
|
exec "${@}" &
|
|
|
|
## OPTIONAL: More commands may be added below
|