📄 genalldparams
字号:
#!/bin/bash# Generates all type D curve parameters within certain limits## Use with the output of listmntfunction myfunc { until [ -z "$1" ] do filename=d$1-$2-$3.param gen/gendparam $1 > $filename shift 3 done}myfunc `awk -F, '{ if (($2 >= 80) && ($2 <= 300) && ($3 >= 80)) { print $1 $2 $3; } }'`
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -