2018-06-14 15:50:29 -07:00

9 lines
123 B
Python

#!/usr/bin/env python
__author__ = "bt3"
import subprocess,os
os.system('ls')
subprocess.call(['ls', '-1'], shell=True)