2023-05-28 hex string のエンディアンを変換する >|echo 1234abcd | python -c "import sys; print(bytes.fromhex(sys.stdin.readline().rstrip())[::-1].hex())"| cdab3412 |