我知道我们可以做这样的事情:
stat -f%z mybigfile > RELEASENOTES.txt
和
echo "bytes" >> RELEASENOTES.txt
现在 RELEASENOTES.txt 将如下所示:
47556304
bytes
我如何才能在同一行上获得“字节”?这是我的目标,但如果我只知道如何在 OS X 终端命令行上连接字符串,那么我就可以做到这一点。无论哪个答案都可以 :-)
答案1
当前状态:
BIGFILE=myverybigfile
echo File size: $(stat -f%z ${BIGFILE}) bytes > RELEASENOTES
echo ${whatissnewinthisbuild} >> RELEASENOTES
明白了!类似这样:(旧)
BIGFILE="myverybigfile"
echo "File size:" `stat -f%z ${BIGFILE}` "bytes" > RELEASENOTES
echo "${whatissnewinthisbuild}" >> RELEASENOTES