쉘 프로그래밍 IF 문법이 틀린걸까요?

khalisto의 이미지

#!/bin/bash

echo -n "Input :"
read a

if [[ $a != "Q" || $a != "W" ]] ; then
echo "False"
else
echo "True"
fi

안녕하세요. 위 소스와 같이 if 조건식에서 문자열 비교 연산에서 not equal ( != ) 을 처리하려고 합니다.

위 소스를 실행해 보시면 아시겠지만 Q 또는 W 가 입력되었을 때 화면에 True 가 나와야는데 이상한 것이 모두 False 가 출력되더

라구요. 조건을 != 가 아닌 = 로 변경하면 모두 정상적으로 적용되는데 혹시 문법중 잘못된 부분이 있는지 봐주시면 감사하겠습니다.

(참고 조건식을 or 연산 없이 단일로 $a != "Q" 만 정의햇을 때는 문제가 발생하지 않았습니다.)

shint의 이미지


http://linuxconfig.org/bash-scripting-tutorial

10.1. Arithmetic Comparisons 산술 비교
-lt <
-gt >
-le <=
-ge >=
-eq ==
-ne !=

10.2. String Comparisons 문자열 비교
= equal
!= not equal
< less then
> greater then
-n s1 string s1 is not empty
-z s1 string s1 is empty

쌍따옴표 안에서는 이렇게 사용하네요.
"${userinput}"

[] 괄호는 하나만 사용합니다.

'Q' 'W' 그냥 따옴표만 사용해야 하는지는 모르겠습니다.

|| 이 적용가능한지 모르겠습니다.

else if 가 되지 않나 봅니다.

끝에 done 이 들어갑니다.

echo -n "Input :"
read a
 
if [ $a != "Q" ]; then
    echo "False"
else
    echo "True"
fi
 
if [ $a != "W" ]; then
    echo "False"
else
    echo "True"
fi
 
done

BASH Programming - Introduction HOW-TO
http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html

고급 Bash 스크립팅 가이드
https://wiki.kldp.org/HOWTO/html/Adv-Bash-Scr-HOWTO/

Advanced Bash-Scripting Guide
http://www.tldp.org/LDP/abs/html/

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

khalisto의 이미지

우선 답변 감사드리며 남겨주신 소스로 실행시 done 에서 에러가 발생하여

다른 대안이 없어 우선 != 대신에 = 로 처리하기로 하였습니다.

추후 방법을 찾게되면 != 로 적요해 볼 생각입니다.

도움주셔서 감사합니다.

qiiiiiiiip의 이미지

if 문법은 맞습니다.

그런데 q가 아니거나 w가 아니면 이라는 조건식은 원래 항상 참입니다.
!= 대신 ==를 쓰는게 맞겠습니다. 아니면 || 대신 && 를 쓰든가요..

또는 [[ $var == STR ]] 조건식에서 STR에는 pattern이 들어갑니다. 따라서

if [[ $a == [QW] ]]; then
echo True
else
echo False
fi

로 해도 되겠네요. 굳이 != 을 써서 False를 위에 넣고 싶으시면
if [[ $a != [QW] ]]; then
echo False
else
echo True
fi

도 되고요.

댓글 달기

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