为什么以下不起作用?
function xyz(){ touch $1; }
xyz temp1.txt
我收到一个错误
touch: missing file operand
Try `touch --help' for more information.
答案1
无法复制:
$ function xyz() { touch "$1"; }
$ xyz temp1.txt
$ ls temp1.txt
temp1.txt
为什么以下不起作用?
function xyz(){ touch $1; }
xyz temp1.txt
我收到一个错误
touch: missing file operand
Try `touch --help' for more information.
无法复制:
$ function xyz() { touch "$1"; }
$ xyz temp1.txt
$ ls temp1.txt
temp1.txt