col-totaler3.sh
来自「Shall高级编程」· Shell 代码 · 共 39 行
SH
39 行
#!/bin/bash# Yet another version of the "column totaler" script (col-totaler.sh)#+ that adds up a specified column (of numbers) in the target file.# This uses the environment to pass a script variable to 'awk' . . .#+ and places the awk script in a variable.ARGS=2E_WRONGARGS=65if [ $# -ne "$ARGS" ] # Check for proper no. of command line args.then echo "Usage: `basename $0` filename column-number" exit $E_WRONGARGSfifilename=$1column_number=$2#===== Same as original script, up to this point =====#export column_number# Export column number to environment, so it's available for retrieval.# -----------------------------------------------awkscript='{ total += $ENVIRON["column_number"] }END { print total }'# Yes, a variable can hold an awk script.# -----------------------------------------------# Now, run the awk script.awk "$awkscript" "$filename"# Thanks, Stephane Chazelas.exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?