src:unix编程环境
一个shell脚本./bundle:它适用于文本文件,但二进制代码:(
#!/bin/bash
echo '# To unbundle , sh this file'
for i
do
echo "echo $i 1>&2"
echo "cat >$i <<'End of $i'"
cat $i
echo "End of $i"
done
一个名为a.out的简单二进制文件,
% ./bundle a.out >> out
% chmod u+x out
% ./out # error happened
我得到了:
./out: line 8: warning: here-document at line 3 delimited by end-of-file (wanted `End of a.out')
是的,我知道`a end of a.out'应该是一个单独的行。但我不知道如何实现它。
谁有一些想法? 提前thx。 :d