在bash中使用tee时如何返回错误代码
原文:How to return error code when using tee in bash
原文:How to return error code when using tee in bash
我想使用tee将任何命令(第一个命令)的输出写入文件,但我想从第一个命令而不是tee命令获得返回代码。
我想使用tee将任何命令(第一个命令)的输出写入文件,但我想从第一个命令而不是tee命令获得返回代码。
I m pretty sure this is going to be obvious, but currently im doing this: count=`find $dir -type f ( -perm -007 ) -print 2>/dev/null | wc -l` This gets me the number i want, but dosen t display ...