쉘 스크립트 문자열 비교 if 질문입니다.

varietypek의 이미지

#!/bin/bash
# del.bash
 
#!/bin/bash
# del.bash
#  1.명령줄 인수로 받은 디렉터리 내의 각 파일에 대해서
#  -지울지 여부를 물은 후 "y"로 답한 것들은 지우는
#  -스크립트를 작성하시오.
#  -인수가 없을 때는 현재 디렉터리를 대상으로 한다.
#  2.사용법: del.bash [디렉토리]
#" 3.파일이름" 지울까요[y/n]?
 
if [ $# -eq 0 ]
then
        dir="."
else
        dir=$1
fi
 
echo $dir\:
cd $dir
for file in *
 
do
        echo $file 지울까요? [ y/n ]?
        read answer
        if ["$answer"="y"];
        then
                rm -f $file
        else
                echo 다음파일
        fi
done

이건데 if ["$answer"="y"] 가 작동하지 않습니다. 도와주세요~

chanik의 이미지

if ["$answer" == "y"];
chanik의 이미지

제가 틀린 답글을 올렸네요. 아래의 익명님 답변이 옳습니다.

매뉴얼도 보고 테스트도 해보고 올린 것인데,
막상 답글 달 때는 제가 테스트한 코드가 아닌 질문하신 내용을 긁어서 편집해 올렸습니다.
괜한 혼란을 드린점 사과드립니다.

그리고, bash 매뉴얼에는 문자열 비교할 때 '==' 을 사용하는 것으로 나와있어서 '=' 으로 문자열 비교하는 것이 의아하게 느껴졌는데 다시 살펴보니 아래와 같이 나오네요. 둘 다 가능한 모양입니다.

       string1 == string2
              True if the strings are equal.  = may be used in place of == for
              strict POSIX compliance.

익명 사용자의 이미지

if [ "$answer"="y" ]; then

([ 와 ] 사이에 띄워쓰기 주의)

마잇의 이미지

if [

여기서 '['는 쉘 문법이 아니라 명령어 입니다. 다른 이름으로 test 라고도 합니다.

/usr/bin/[
/usr/bin/test

test "$answer"="y"

이렇게 보면 test와 "를 띄워야 된다는 게 눈에 잘 들어 오지만 [ ] 명령어를 이용하면 헷갈릴 여지가 있습니다.

[[ ]] 이건 bash 자체의 문법이 맞습니다.


--
마잇

댓글 달기

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