ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### :-: 输入输出 • 使用命令的输出作为可执行文件的输入参数 ``` $ ./vulnerable `your_command_here` 或者 $ ./vulnerable $(your_command_here) ``` • 使用命令作为输入 ``` $ your_command_here | ./vulnerable ``` • 将命令行输出写入文件 ``` $ your_command_here > filename ``` • 使用文件作为输入 ``` $ ./vulnerable < filename ```