![터치 기능 [끄기]](https://linux55.com/image/145883/%ED%84%B0%EC%B9%98%20%EA%B8%B0%EB%8A%A5%20%5B%EB%81%84%EA%B8%B0%5D.png)
다음은 왜 작동하지 않습니까?
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