mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-12 23:19:31 +01:00
11 lines
115 B
Bash
Executable File
11 lines
115 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for script in add-*
|
|
do
|
|
if [ $script = 'add-all' ]; then
|
|
continue
|
|
fi
|
|
|
|
./$script
|
|
done
|