[완료] 쉘프로그래밍 할 때 공백문자 인수 처리문제

lightoml의 이미지

안녕하세요.

쉘프로그래밍 할 때 첫 째 인수 즉, $1가 공백문자를 포함하고 있을 때 이것을 어떻게 처리해야 하나요..

즉 test.sh라는 쉘스크립트가 있다고 하면

% test.sh aaa\ 111

을 실행하고 싶은데요..

프로그램은 $1=aaa, $2=111 이렇게 두개의 인수로 인식해 버리네요..

혹시 해결방법 아시는 분 답변 부탁드립니다.

--------------------------------------------------------------------------------------------------------------

윗 글은 전에 제가 올렸던 질문이고요.. 우선 답변 해주신 여러 분들 감사드립니다.

위 문제의 원인을 알았습니다. for문에서 인수를 모두 문장으로 읽어 들이고, 그것을 하나씩 인수로 받아 들이니까.. 띄어쓰기가 반드시 구분될 수밖에 없었습니다.

그런데, 추가적인 질문이 있는데요.. 공백문자가 포함된 파일명을 가진 파일이 있는지 확인하는 if문을 만들 때 계속 syntax error가 나는데요..

가령, C-Shell에서

if ( -f $argv[1] ) then 이렇게 하고

% test.sh aaa\ 111 하면

'aaa 111'이란 파일명을 가진 놈을 찾아야 하는데 syntax error가 납니다.

이런 경우 어떻게 처리해야 하나요?

허접한 질문이지만 답변 부탁드립니다.

silverjh2의 이미지

저는 잘 되는데요?

어떠한 환경에서 질문하신 내용과 같은 현상이 발생하는지 저도 궁금합니다. -.-?

----------------------------------------------------------------------------
$ /bin/bash --version
GNU bash, version 3.1.17(1)-release (i486-pc-linux-gnu)
Copyright (C) 2005 Free Software Foundation, Inc.
$ cat test.sh
#! /bin/bash
echo $1
echo $2
$ bash test.sh 'aaa 111'
aaa 111

$ bash test.sh "aaa 111"
aaa 111

$ bash test.sh aaa 111
aaa
111
----------------------------------------------------------------------------

jachin의 이미지

이스케이프 문자를 이용하시는 것은 어떨까요?

aaa 111 이라면
aaa\ 111 이라고 입력해보세요.
====
( - -)a 이제는 학생으로 가장한 백수가 아닌 진짜 백수가 되어야겠다.

pcpenpal의 이미지

원래는 아래와 같이 하셨다가 여기에 질문 올리시면서 같은 토큰인 걸 강조하느라 '로 묶으신 게 아닐까 생각되는데... 그게 답입니다.
% test.sh aaa 111

ymir의 이미지

if [ -f "${argv[1]}" ] ; then
    blah..blah..
fi

되면 한다! / feel no sorrow, feel no pain, feel no hurt, there's nothing gained.. only love will then remain.. 『 Mizz 』

되면 한다! / feel no sorrow, feel no pain, feel no hurt, there's nothing gained.. only love will then remain.. 『 Mizz 』

M.W.Park의 이미지

소스내에서 파일 접근한는 부분 쪽을 "$1" 형식으로 따옴표로 묶어주세요.

-----
오늘 나의 취미는 끝없는, 끝없는 인내다. 1973 法頂

-----
오늘 의 취미는 끝없는, 끝없는 인내다. 1973 法頂

lightoml의 이미지

답변 해주신 여러분들 정말 감사드립니다.

"${argv[1]}" 이렇게 하니 되네요..^^

모두 좋은 하루되세요..^^

댓글 달기

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