mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-09 21:49:34 +01:00
11 lines
115 B
Plaintext
11 lines
115 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
for script in add-*
|
||
|
do
|
||
|
if [ $script = 'add-all' ]; then
|
||
|
continue
|
||
|
fi
|
||
|
|
||
|
./$script
|
||
|
done
|