리눅스마스터 1급 2020년 1회 6번

From IT Wiki
Revision as of 01:23, 22 October 2022 by Maintenance script (talk | contribs) (Imported from text file)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

과목: 리눅스 실무의 이해

문제[edit | edit source]

6. 다음 명령의 실행 결과로 ( 괄호 )안에 알맞은 것은?

[ihd@www ~]$ cat tesh.sh
#!/bin/bash
echo “$0 $1 $#”
[ihd@www ~]$ ./tesh.sh /the /sharp
( 괄호 )

  • ① $0 /sharp #
  • ② $0 /the 2
  • ③ ./test.sh /the #
  • ④ ./test.sh /the 2

풀어보기[edit | edit source]

정답[edit | edit source]

  • 2번

해설[edit | edit source]

같이 보기[edit | edit source]