diff --git a/stopdaemons.sh b/stopdaemons.sh new file mode 100755 index 0000000..9fff567 --- /dev/null +++ b/stopdaemons.sh @@ -0,0 +1,6 @@ +#!/bin/bash +cd "${BASH_SOURCE%/*}" || exit + +./listclis.sh | while read cli; do + ${cli} stop +done