pbot/applets/pbot-vm/host/devices/add-all

11 lines
115 B
Bash
Executable File

#!/bin/sh
for script in add-*
do
if [ $script = 'add-all' ]; then
continue
fi
./$script
done