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