5 lines
150 B
Bash
5 lines
150 B
Bash
|
#!/bin/bash
|
||
|
[ -z "$1" ] && echo "source-cloud-home-name not found" && exit 1
|
||
|
. ./.env
|
||
|
../klouds/bin/hosts_list.sh $1 -src ../klouds/home -filter pub
|