parent
4b25f8f2bd
commit
9757d2c18d
25
bin/grep.py
Normal file
25
bin/grep.py
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import console
|
||||||
|
|
||||||
|
def get_app_class(template):
|
||||||
|
class App(template):
|
||||||
|
def F_main(self):
|
||||||
|
pattern = self.argv[1].encode("utf-8")
|
||||||
|
file = self.argv[2]
|
||||||
|
|
||||||
|
try:
|
||||||
|
with open(file, "rb") as f:
|
||||||
|
for line in f.readlines():
|
||||||
|
if re.search(pattern, line):
|
||||||
|
self.console.write(line)
|
||||||
|
except OSError as e:
|
||||||
|
try:
|
||||||
|
os.listdir(file)
|
||||||
|
console.write_str(self.console, f"grep: {file}: Is a directory\n")
|
||||||
|
except OSError:
|
||||||
|
console.write_str(self.console, f"grep: {file}: No such file or directory\n")
|
||||||
|
|
||||||
|
self.exit()
|
||||||
|
|
||||||
|
return App
|
Loading…
Reference in New Issue
Block a user