Make ls
more POSIX-like
This commit is contained in:
parent
95011656f0
commit
844297a61e
13
bin/ls.py
13
bin/ls.py
|
@ -3,8 +3,17 @@ import os
|
|||
def get_app_class(template):
|
||||
class App(template):
|
||||
def F_main(self):
|
||||
for file in os.listdir(self.argv[1]):
|
||||
print(file)
|
||||
if len(self.argv) == 1:
|
||||
directory = "."
|
||||
else:
|
||||
directory = self.argv[1]
|
||||
|
||||
try:
|
||||
for file in os.listdir(directory):
|
||||
print(file)
|
||||
except OSError as e:
|
||||
print(str(e))
|
||||
|
||||
self.exit()
|
||||
|
||||
return App
|
||||
|
|
Loading…
Reference in New Issue
Block a user