쉘 소스인데 이해가 잘 안되는 부분이 좀 있어요...(초보적임)

khaic0c0의 이미지

#!/bin/bash

if [ -z $1 ]; then
  echo usage : $0 directory
  exit
fi

SRCD=$1
TGTD="/home/c/shell/"
OF=home-`date +%M%D`.tar.gz
tar -cZf $TGTD$OF $SRCD

먼저 이 소스가 결국 하고자 하는일은 압축을 하는일 같은데요...
제가 /home/c/shell 에 있는 파일을 모두 압축하고자 할때...

/home/c/shell 밑에 backup1.sh 라는 파일을 만들었습니다.

이걸 돌리면,
[c@localhost shell]$ sh backup1.sh
usage : backup1.sh directory

이와같이 나와요...
먼저 궁금한것은 $1, $0과 같은것이 무엇인지 궁금하구요.
SRCD=$1 이게 무슨 뜻인가요?

시간좀 많으신분들은....좀 자세히 소스보면서 설명좀 해주시면 감사하겠습니다.

lu4moon의 이미지

Quote:
이와같이 나와요...
먼저 궁금한것은 $1, $0과 같은것이 무엇인지 궁금하구요.
SRCD=$1 이게 무슨 뜻인가요?

쉘에서 $0, $1은 인자일겁니다.

ls -al

이라는 명령을 치면 ls라는 프로그램을 -al이라는 인자를 줘서 실행한다는 말이 되겠네요
(이부분에 대해서는 프로그래밍관련 서적을 참고해보세요--;;)

$0은 아마 실행되는 스크립트의 이름같지요?;;

마지막내용은 SRCD에 그냥 인자값 대입인것 같군요

You wrote 'fool self' magic on your book.

용가리의 이미지

$0와 $1은 각각 command line에서 입력하는 것을 말합니다.
$0는 님이 입력하시는 명령어가 될테고요, $1 부터는 그
님이 입력하는 명령어로 넘어갈 아규먼트를 가리키지오.
님이 질문하신 소스를 한줄한줄 분석하면 다음과 같습니다.

#!/bin/bash // 이 스크립트는 bash쉘에서 실행합니다.

if [ -z $1 ]; then // 첫번째 아규먼트가 지정되지 않은 경우
echo usage : $0 directory // 사용법 출력
exit
fi

SRCD=$1 // 첫번째 아규먼트를 변수에 대입
TGTD="/home/c/shell/"
OF=home-`date +%M%D`.tar.gz
tar -cZf $TGTD$OF $SRCD // 님이 첫번째 아규먼트로 지정한 파일
// 또는 디렉토리를 압축합니다.

대충 설명하면 위와 같습니다.
중복되는 내용은 뺐고요, 대충 이해가 가실걸로 생각됩니다.
그럼 수거여!

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.