Use argparse in clipboard.py, add --output argument.
This commit is contained in:
parent
f5b0bf8ffd
commit
317688d9aa
1 changed files with 20 additions and 8 deletions
20
clipboard.py
20
clipboard.py
|
@ -1,14 +1,26 @@
|
|||
'''
|
||||
Dump the clipboard to stdout. I use this for redirecting to files.
|
||||
'''
|
||||
import argparse
|
||||
import pyperclip
|
||||
import sys
|
||||
|
||||
if len(sys.argv) > 1:
|
||||
from voussoirkit import clipext
|
||||
stuff = clipext.resolve(sys.argv[1])
|
||||
pyperclip.copy(stuff)
|
||||
def clipboard_argparse(args):
|
||||
if args.output_file:
|
||||
open(args.output_file, 'w', encoding='utf-8').write(pyperclip.paste())
|
||||
else:
|
||||
text = pyperclip.paste()
|
||||
text = text.replace('\r', '')
|
||||
print(text)
|
||||
|
||||
def main(argv):
|
||||
parser = argparse.ArgumentParser(description=__doc__)
|
||||
|
||||
parser.add_argument('-o', '--output', dest='output_file', default=None)
|
||||
parser.set_defaults(func=clipboard_argparse)
|
||||
|
||||
args = parser.parse_args(argv)
|
||||
return args.func(args)
|
||||
|
||||
if __name__ == '__main__':
|
||||
raise SystemExit(main(sys.argv[1:]))
|
||||
|
|
Loading…
Reference in a new issue