유닉스 쉘 스크립팅 질문이요 ~

yaru22의 이미지

그냥 자잘한 질문들 몇개 여쭤봅니다.

제 source.sh 파일에

if [ `uname` -eq SunOS ]; then
setenv JAVA_HOME blah blah blah
elif [ 'uname' -eq Linux ]; then
setenv JAVA_HOME bloh bloh bloh
fi

이런식으로 써서 source로 실행하려고 했더니

안되더라고요...

저 위에 코드를 source 로 실행 할 수 있게 하는 방법이 있나요?

아니면 저 위에 코드와 같은 기능을 하면서 source로 실행 되게 하려면 어떻게 해야되죠?

그리고 두번째 질문은요,

shell script 내용이 길어지면 나중에 디버깅 같은거 어떻게 하나요?

제가 여태까지 장난하면서 짜본거는 다 몇십줄 안되는거라 ㅡ,.ㅡ; 에러 나면 코드 읽어보면서 고칠 수 있었는데

코드가 막 몇백줄 몇천줄 (이렇게 짤 일이 있나요 ;;?) 되면 디버깅 어떻게 하죠?

답변에 미리 감사드립니다. :)

lovian의 이미지

저건 sh의 if 구문입니다.
source 를 사용하신다는것 보면, bash, tcsh 등의 쉘일텐데, 해당 구문에 맞게 작성해보시지요?

-----------------
한글을 사랑합니다.

-----------------
한글을 사랑합니다.

kane의 이미지

set UNAME=`uname`
if ( $UNAME == SunOS ) then
        setenv JAVA_HOME "blah blah blah"
else if ( $UNAME == Linux ) then
        setenv JAVA_HOME "bloh bloh bloh"
endif

setenv를 사용하신걸로 봐서 tcsh인 것 같아, tcsh 구문에 맞게 변경해보았습니다. 자세한 문법은 man tcsh 참고하세요.

그리고 디버깅은... 그냥(?) 해야하지 않을까요. 달리 방법이 있으려나요? 디버거가 있는 것도 아닐테고...

feanor의 이미지

bash에서는 set -x를 하시면 쉘 스크립트가 실행되면서 실행하는 줄을 화면에 출력해 주는데, 디버깅에 상당한 도움이 됩니다.

출력을 끄려면 set +x를 합니다.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.