我想把文件的大小变成变量吗?怎么做?
ls -l | grep testing.txt | cut -f6 -d' '
给了大小,但如何将其存储在shell变量中?
filesize=$(stat -c '%s' testing.txt)