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