diff --git a/bin/ls.py b/bin/ls.py new file mode 100644 index 0000000..e948689 --- /dev/null +++ b/bin/ls.py @@ -0,0 +1,10 @@ +import os + +def get_app_class(template): + class App(template): + def F_main(self): + for file in os.listdir(self.argv[1]): + print(file) + self.exit() + + return App