awk 질문

jungwook의 이미지

shell 프로그래밍을 조금씩 공부하고 있는데,

질문이 있습니다.

#!/bin/bash
 
for file in *.txt
do
        awk '
        BEGIN{line=40};
        { 
                if(NR==line) print $0 
        }' $file
done

해당 디렉토리에서 각 테스트 파일의 40번째 라인만 찾아서 출력하는 건데요
저기서 전 line부분을 아규먼트로 받고 싶은데
test> ./shell.sh (라인 넘버)

shell 이랑 awk랑 섞여서 잘 되지 않네요. awk에서는 ARGV이고
shell에서는 $숫자 이렇게 아규먼트를 받던데 어떻게 해야할까요?

요즘 awk랑 shell에 흥미가 붙는데 볼만한 소스(?)나 없을까요? 예전 언어공부할 때 괜찮게 만들어진 코드를 보면서
공부하니 잘되더라구요.
그리고 shell 프로그래밍보다 perl을 알면 이런 처리에 유용하다던데 perl관련해서 예제나 추천부탁드릴께요.

날씨는 우울하지만 즐거운 하루 되세요.

코드는 "code /code" 이걸 쓰니까 깔끔하네요. 괄호 생략 ㅡㅡ;

ysy05의 이미지

약간 편법같은데, 조건을 파일로 저장하여 실행시키는 것도 한가지 방법이 될 것 같습니다.

#!/bin/bash
 
for file in *.txt
do
  echo "{if (NR=="$1") print \$0;} " > line.awk
  awk -f line.awk $file
done
jungwook의 이미지

아 이런 방법도 있네요.

여기서 $1 shell스크립에서 제가 원하는 인자이고 $0 앞에 \ 붙인 이유는 "$0" 자체로 문자로 넣으려고 하신거네요.

즉 저장된 line.awk를 보니
{if(NR==30) print $0;}
이런식으로 들어가 있네요.

제가 원하던 대로 잘 동작되네요. ㅎㅎ
신기하네요. 감사합니다.

slomo의 이미지

awk에서 -v 옵션을 주어서 변수값을 전달하면 될 것 같은데요.

#!/bin/bash
 
for file in *.txt
do
	awk -v line=$1 '
	{
		if (NR==line) print FILENAME, line, $0;
	}' "$file"
done

====
No one asks you for change or directions.
-- Slo-Mo, J. Krokidas

====
No one asks you for change or directions.
-- Slo-Mo, J. Krokidas

Prentice의 이미지

awk 대신에 sed -n 30p 이런 식으로 하시는 건 고려해보셨나요?

댓글 달기

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