来自命令行的“递归hexdump”,具有相同名称的输入和输出

时间:2017-11-21 16:51:22

标签: linux shell command-line hexdump

我在目录“documents”(file1,file2,...)中有一些文件,我想将它们从命令行用hexdump保存在另一个目录“documents_hex”中。有一种方法可以在“文档”中为每个文件使用hexdump,并将它们保存在“documents_hex”(“documents_hex”在“文档”里面)中,在输入和输出中使用相同的名称吗?

示例:file1到/ documents_hex / file1,file2到/ documents_hex / file2,...

1 个答案:

答案 0 :(得分:0)

检查此代码:

for file in `ls documents`
do
  hexdump -x $file > documents_hex/$file
done