[완료] shell script uniq -c

DwYoon의 이미지

#!/bin/sh
# Count illegal access trials for each IPs

for sec_file in secure*
do
        echo --- in $sec_file ---
        sed -n -e '/fail/I s/^.*from \([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\) .*$/\1/p;' $sec_file | uniq -c | sort -n
done

secure 파일에서 fail 이 포함되는 라인에서 아이피주소만 뽑아내서, 그 횟수를 세고, 소팅하려고 만든 스크립트입니다.

그런데, 결과가

--- in secure.1 ---
      1 210.21.119.217
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 217.152.210.100
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9
      1 62.37.233.9

이렇게도 나옵니다. 왜 이렇게 나오는지 이해가 안 갑니다. uniq 동작이 문제가 있는 건가요? 뭘 잘못했나요?

미리 감사드립니다.

kslee80의 이미지

uniq 는 stdin 으로 입력을 받는 경우에는
중복된 데이타가 연속적으로 나와야만 중복된 데이타를 제거해 줍니다.
(stdin 으로 순서가 뒤죽박죽이 돼서 중복된 데이타가 들어오는 것을 확인하는것은 이래저래 힘들죠 -.-;;;)

즉, uniq 보다는 sort 를 먼저 호출해야 의도한대로 동작할 것입니다.

DwYoon의 이미지

제가 uniq 의 동작에 대해 잘못 이해하고 있었군요.
감사합니다.

moc.soolge.nooynowead

댓글 달기

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