mirror of
https://github.com/jopohl/urh.git
synced 2026-03-03 15:04:01 +01:00
11 lines
168 B
Python
Executable File
11 lines
168 B
Python
Executable File
#!/usr/bin/env python
|
|
"""
|
|
Simple example external encoding
|
|
Simply doubles each bit of the input
|
|
"""
|
|
|
|
import sys
|
|
|
|
bits = sys.argv[1]
|
|
print("".join(b + b for b in bits))
|