Bash是个好工具

2019-07-12 17:43发布

在嵌入式Linux运行,发现: gunzip -h
gunzip: invalid option -- h
BusyBox v1.01 (2005.09.15-19:25+0000) multi-call binary
Usage: gunzip [OPTION]... FILE
Uncompress FILE (or standard input if FILE is '-').
Options:
        -c      Write output to standard output
        -f      Force read when source is a terminal
        -t      Test compressed file integrity

它的参数比起linux PC上的参数,少多了。 我希望使用gunzip -l 得到一个*.gz解压之后文件的大小,结果无法实现了:(
bash发挥了巨大的作用,一句话: gunzip -c file.xml.gz | wc -c > /tmp/filesize.txt 在filesize.txt中,记录了文件解压后的大小, 好好思考,一定能够找到解决方案的。 学好bash, 老有用了!!!


获取脚本执行 绝对路径 假设名称为path.sh, 最开始使用: echo "scriptPath1: "$(cd `dirname $0`; pwd) 但是只能执行: #./path.sh 如果运行: #source path.sh 就会报错
后来学会了: BS0="${BASH_SOURCE[0]}"
echo "scriptPath1: "$(cd `dirname $BS0`; pwd)
呵呵,这下两种方法都可以正常运行了