5 lines
183 B
Python
Executable file
5 lines
183 B
Python
Executable file
from os import *
|
|
|
|
# This file is simply to demonstrate that utilizing python's native os module allows us to pass bash commands using the system() method.
|
|
|
|
system('sudo pacman -Syu')
|