September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
|
|
@ -1,15 +1,12 @@
|
|||
import sys, datetime, shutil
|
||||
|
||||
#sys.argv[1:] = 'go for it'.split()
|
||||
if len(sys.argv) == 1:
|
||||
try:
|
||||
f = open('notes.txt', 'r')
|
||||
shutil.copyfileobj(f, sys.stdout)
|
||||
f.close()
|
||||
with open('notes.txt', 'r') as f:
|
||||
shutil.copyfileobj(f, sys.stdout)
|
||||
except IOError:
|
||||
pass
|
||||
else:
|
||||
f = open('notes.txt', 'a')
|
||||
f.write(datetime.datetime.now().isoformat() + '\n')
|
||||
f.write("\t%s\n" % ' '.join(sys.argv[1:]))
|
||||
f.close()
|
||||
with open('notes.txt', 'a') as f:
|
||||
f.write(datetime.datetime.now().isoformat() + '\n')
|
||||
f.write("\t%s\n" % ' '.join(sys.argv[1:]))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue