mirror of
https://github.com/danielmiessler/fabric
synced 2024-11-10 07:10:31 +00:00
7 lines
93 B
Python
7 lines
93 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import pyperclip
|
||
|
|
||
|
pasted_text = pyperclip.paste()
|
||
|
print(pasted_text)
|