7 lines
60 B
Bash
Executable file
7 lines
60 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for i in *.py
|
|
do
|
|
python $i > /dev/null
|
|
|
|
done
|