쉘 스크립트에서 열 추출

익명 사용자의 이미지

cat 123.txt
1  5  asd  49df  di49
2  12 asr  47as  il42

이렇게 쓰여있다고 하면, 이걸 행렬이라고도 생각할 수 있을 것 같습니다.

여기서 2행 3열, 1행 5열 이렇게 행렬의 특정 값을 지칭할 수 있는 방법이 있을까요?

김정균의 이미지

10 행 2열 을 지정하는 방법은 다음과 같이 할 수 있을 것 같네요

A=$( head -n 10 | tail -n 1 | awk '{ print $2; }' )

또는 shell code 로만 해야 한다면

i=0
while read line
do
    if (( i == 9 )); then
        read a b <<< "${line}"
        A=b
        break
    fi
    let "i++"
done < 123.txt

을 함수화 해서 사용하면 될 것 같은데요.

황병희의 이미지

셸 스크립트라면 제가 드릴 말씀은 없구요,,,
일반적으로 두 행이 규칙성이 있다면
배열으로 재구성에 성공하면 그다음은 쉽게 접근하실 수 있을거라 생각합니다.

가령 다음과 같은 느낌으로요,,,

_array = [
    ["1",  "5",  "asd",  "49df",  "di49",],
    ["2",  "12", "asr",  "47as",  "il42",],
]

[우분투 18.04 파여폭스 나비에서 적었어요~]

--
^고맙습니다 감사합니다_^))//

chanik의 이미지

행과 열 모두 awk에서 처리할수도 있겠습니다.
예를 들어 1행 5열이라면,

$ cat 123.txt | awk 'NR==1 {print $5}'
di49
ymir의 이미지

bash 는 multi-dimensional array 를 지원하지는 않지만..
v4 부터 제공하는 associative array 를 써서 비슷하게 흉내낼 수는 있습니다.

$ cat 123.txt
1  5  asd  49df  di49
2  12 asr  47as  il42
 
$ cat run.sh
#!/bin/bash
 
declare -A arr
x=0
while read -r line; do
        set -a $line
        y=0
        until [ -z "$1" ]; do
                arr[$x,$y]=$1
                let y++
                shift
        done
 
        let x++
done < 123.txt
 
echo "arr(1,3) = ${arr[1,3]}"
echo "arr(0,4) = ${arr[0,4]}"
 
exit 0
 
$ bash run.sh
arr(1,3) = 47as
arr(0,4) = di49

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

ymir의 이미지

아니면.. 그냥 각각의 배열에 집어 넣고 쓸 수도..

$ cat run2.sh
#!/bin/bash
 
x=0
while read -a arr$x; do
        let x++
done < 123.txt
 
echo "arr(1,3) = ${arr1[3]}"
echo "arr(0,4) = ${arr0[4]}"
 
# $1 - x pos
# $2 - y pos
function prn_matrix()
{
        eval echo "arr\($1,$2\) = \${arr$1[$2]}"
}
 
prn_matrix 1 3
prn_matrix 0 4
 
exit 0
 
$ bash run2.sh
arr(1,3) = 47as
arr(0,4) = di49
arr(1,3) = 47as
arr(0,4) = di49

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

댓글 달기

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