For More Information : https://ocom5com.blogspot.com/
touch file.py
vim file.py
import sys
def start():
f = open(sys.argv[1], 'r')
line = f.readline()
while line:
print(line)
line = f.readline()
if _name_ == '__main__':
start()
ll
echo "AAA" - README
ll
python file.py README