다음은 왜 작동하지 않습니까?
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