Explore Connect Documentation
Snippets
1
2
3
4
5
6
import os
os.system("ls -al")  # call shell command ls -al
import subprocess as sp
sp.call(["ls", "-al"])
Press desired key combination and then press ENTER.