3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 18:08:46 +02:00
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