5
변수에 저장된 명령을 어떻게 실행할 수 있습니까?
$ ls -l /tmp/test/my\ dir/ total 0 위의 명령을 실행하는 다음 방법이 실패하거나 성공하는 이유가 궁금합니다. $ abc='ls -l "/tmp/test/my dir"' $ $abc ls: cannot access '"/tmp/test/my': No such file or directory ls: cannot access 'dir"': No such file or directory $ "$abc" bash: ls -l "/tmp/test/my dir": No such …