标签: linux function shell unix
我需要将文件传递给函数。这是我的功能
rec(){ mapfile -t rect < $f echo ${rect[2]} } f=$(< file1.txt) rec $f
但这不起作用。 我收到以下错误
./test.sh: line 2: $f: ambiguous redirect
你知道我哪里出错吗?