[완료]셀 스크립트 질문입니다.

xoahrdl의 이미지

List1='a b c d'
for type in List1
do
./xxxxxxxxxxxxxx $type xxxxxxxx
./xxxxxxxxxxxxxx $type xxxxxxxx
done
이런식의 간단한 셀 스크립트 작성중입니다.(type이 List1 의 문자열을 차례차례 받는.....)
문제는 제가 List2 를 하나 더 만들어 같은 명령에 하나의 변수를 더 집어 넣고 싶다는 것입니다.
조언부탁드립니다. 여러가지 해봤는데 잘 안되네요..
List1='a b c d'
List2='e f g h'
?????
./xxxxxxxxxxxxxx $type xxxxxxxx < $type1

slc1의 이미지

애매한 LOOP네요..
요지가 조금은 빠진듯한..
아마 아래 2개 중 1개 일거 같은데요..

case (1)
LIST1='a b c d'
LIST2='e f g h'

echo "LIST1 = $LIST1"
echo "LIST2 = $LIST2"

for L1 in $LIST1
do
for L2 in $LIST2
do
echo " $L1 $L2"
done
done

--- output ---
LIST1 = a b c d
LIST2 = e f g h
a e
a f
a g
a h
b e
b f
b g
b h
c e
c f
c g
c h
d e
d f
d g
d h

case (2)
LIST="a:e b:f c:g d:h"
echo "LIST = $LIST"

for L in $LIST
do
L1=`echo $L|awk -F":" '{print $1}'`
L2=`echo $L|awk -F":" '{print $2}'`
echo " $L1 $L2"
done

--- output ---
LIST = a:e b:f c:g d:h
a e
b f
c g
d h

xoahrdl의 이미지

에러가 나네요
Usage: awk [POSIX or GNU style options] -f progfile [--] file ...
Usage: awk [POSIX or GNU style options] [--] 'program' file ...
POSIX options: GNU long options:
.
.
중략
.
.
To report bugs, see node `Bugs' in `gawk.info', which is
section `Reporting Problems and Bugs' in the printed version.
ㅜㅜ

리스트 두개에서 하나씩 뽑아와서 원하는 위치에 넣어주고 싶어서 이렇게 하는거랍니다

jacojang의 이미지

배열로 만들어서 접근하는 방식인데요....
이런걸 원하시는 건가요??
(bash 쉘 소스입니다.)

#!/bin/bash

List1='a b c d'
List2='e f g h'

List1_array=($List1)
List2_array=($List2)

i=0
while :
do
type=${List1_array[$i]}
type2=${List2_array[$i]}
if [ "x${type}" = "x" -o "x${type2}" = "x" ] ; then
break;
fi

echo $type":"$type2

let "i = i + 1"
done

--------------------------------------------------
http://www.jacojang.com

xoahrdl의 이미지

if [ "x${type}" = "x" -o "x${type2}" = "x" ] ; then
break;
fi

이부분이 정확히 어떻게 돌아가는건지 모르겠습니다.
설명좀 부탁드려도 될까요?

jacojang의 이미지

쉘 프로그램을 보면 보통 이런 문법을 많이 쓰는데...

쉘에는 변수형(int,string,...) 이 없기 때문에 어떤 값을 넣었냐에 따라 형이 변합니다.
그러므로 ${type} 에 숫자를 넣으면 숫자형이되고 문자를 넣으면 문자 형이 되는데..

$type 에 값이 있는지 없는지 확인할때
단순히 if [ ${type} = "" ] 이런 식으로 비교해 버리면 ${type} 에 숫자가 늘어간 경우 에러가 발생 합니다.
그걸 방지 하기 위해서 "x${type}" 이런 식으로 확실한 문자열을 만들어서 "x" 와 비교하는 거구요...

위 내용을 C 로 바꾼다면

if ( !strcmp(type,"") || !strcmp(type2,"") ) {
break;
}

가 됩니다.. 즉 -o 는 || 의 역활을 하는 겁니다.

--------------------------------------------------
http://www.jacojang.com

xoahrdl의 이미지

많은 도움 되었습니다...

댓글 달기

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