mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-02-11 22:44:59 -05:00
7 lines
93 B
Python
Executable File
7 lines
93 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import pyperclip
|
|
|
|
pasted_text = pyperclip.paste()
|
|
print(pasted_text)
|