我正在尝试读取一个在ash shell中保存单个数字的文件。 bash方式这样做
ARG=`cat /tmp/tempfile`
不起作用,我知道ARG在这行代码之后没有任何东西。
答案 0 :(得分:0)
尝试用引号括起来,让它不会在第一个换行符停止:
ARG="`cat /tmp/tempfile`"
或
ARG="$(cat /tmp/tempfile)"
或
read ARG </tmp/tempfile #only 1st line will be read