大家好,我是脚本的新手,我在这里遇到问题,我无法将命令行变量传递给我的脚本。
biz$: ./myproject.sh -x file2
我的(给定的) myproject 具有以下内容:
Type ="" //here i pass first argument
while [ $# -gt 0]
case "$1" in
-x) shift; type = "x" >&2;shift ;;
-y) shift; type = "y" >&2;shift ;;
###################################################
BEGIN{
if ($7 == '/'){
if ($2 != "zzzz"){
printf ("error",$0);
if ($3 < 111){
printf ("error", $0);
}
file = " " //here i want to pass my argument file2.
请帮我解决这个问题,如果不解决这个问题,我将无法继续前进,我是脚本的新手。我不能吃 $2 $3 $7..专家请我需要你的建议。