Linux command
dcode 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Decode base64
dcode base64 "[encoded_text]"
Decode URL
dcode url "[encoded%20text]"
Decode hex
dcode hex "[48656c6c6f]"
Decode ROT13
dcode rot13 "[encoded_text]"
Decode from file
dcode base64 -f [encoded.txt]
Auto-detect
dcode auto "[unknown_encoding]"
说明
dcode is a command-line utility for decoding text from various encoding schemes. It supports common encodings like Base64, URL encoding, hexadecimal, and simple ciphers like ROT13. The tool is useful for quickly decoding strings encountered in logs, URLs, configuration files, or CTF challenges. The auto-detect feature attempts to identify the encoding automatically when the type is unknown. dcode simplifies the workflow of decoding text that would otherwise require multiple tools or online services.
参数
- -f, --file _FILE_
- Read input from file.
- auto
- Auto-detect encoding type.
- -o, --output _FILE_
- Write decoded output to file.
- --help
- Display help information.
FAQ
What is the dcode command used for?
dcode is a command-line utility for decoding text from various encoding schemes. It supports common encodings like Base64, URL encoding, hexadecimal, and simple ciphers like ROT13. The tool is useful for quickly decoding strings encountered in logs, URLs, configuration files, or CTF challenges. The auto-detect feature attempts to identify the encoding automatically when the type is unknown. dcode simplifies the workflow of decoding text that would otherwise require multiple tools or online services.
How do I run a basic dcode example?
Run `dcode base64 "[encoded_text]"` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -f, --file _FILE_ do in dcode?
Read input from file.