mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-18 20:36:22 +00:00
9 lines
171 B
Bash
Executable file
9 lines
171 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Create base directories
|
|
for dir in vnc config ssh
|
|
do
|
|
[ -d ~/.${dir} ] || mkdir -p ~/.${dir}
|
|
done
|
|
|
|
## OPTIONAL: More commands may be added below
|