change the README.md so that the command line is documented first, and the functions are an afterthought

This commit is contained in:
2021-04-24 08:46:52 -04:00
parent 2459d68bcb
commit 3d79460bb6
2 changed files with 199 additions and 194 deletions

2
tf.py
View File

@@ -85,7 +85,7 @@ def sed(filename, sed_cmd, bak_ext=".bak"):
with open(filename,'w') as g:
for lin in f:
i=i+1
m=(i>=s and i<=e)
m=(s <= i <= e)
if op=='s' and m:
lin=lin[:-1]
if sp.search(lin): h+=1