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
28
clipboard.py
28
clipboard.py
|
@ -1,14 +1,26 @@
|
||||||
'''
|
'''
|
||||||
Dump the clipboard to stdout. I use this for redirecting to files.
|
Dump the clipboard to stdout. I use this for redirecting to files.
|
||||||
'''
|
'''
|
||||||
|
import argparse
|
||||||
import pyperclip
|
import pyperclip
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
if len(sys.argv) > 1:
|
def clipboard_argparse(args):
|
||||||
from voussoirkit import clipext
|
if args.output_file:
|
||||||
stuff = clipext.resolve(sys.argv[1])
|
open(args.output_file, 'w', encoding='utf-8').write(pyperclip.paste())
|
||||||
pyperclip.copy(stuff)
|
else:
|
||||||
else:
|
text = pyperclip.paste()
|
||||||
text = pyperclip.paste()
|
text = text.replace('\r', '')
|
||||||
text = text.replace('\r', '')
|
print(text)
|
||||||
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