7 lines
94 B
Bash
Executable File
7 lines
94 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for script in $(ls | grep '^[0-9]*_.*.sh'); do
|
|
echo "$script"
|
|
./"$script"
|
|
done
|