8 lines
192 B
Python
8 lines
192 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
executables = [name for name in os.listdir() if len(name.split(".")) == 1]
|
||
|
print(executables)
|
||
|
for executable in executables:
|
||
|
os.system("./" + executable)
|