쉘 스크립트 초보자 질문

gorogong의 이미지

bash로 이것 저것 만들다 잘 풀리지 않아 질문 드립니다.

ps -ef |grep exe |wc -l
 
10
 
 
#!/bin/bash
 
ps -ef |grep exe |wc -l
 
if [[ #무언가# > 10 ]]; then
 
 echo "OK" ;
 
else
 
 echo "NOK" ;
 
fi

위와 같은 형태로 만들어 보고 싶은데 저 카운트 결과를 어떻게 변수로 지정할지 감이 잡히지 않아
조언을 얻고자 합니다.

또 위와 같은 형태로 쓰면 문제가 생기거나 비효울 적인지도 묻고 싶습니다.

감사합니다.

Prentice의 이미지

exe_count=$(ps -ef | grep exe | wc -l)
if [ "$exe_count" -gt 10 ];

아니면

exe_count=$(ps -ef | grep exe | wc -l)
if [[ "$exe_count" > 10 ]];

수정: [[ 쓸 때는 부등호가 숫자 비교가 아닌 스트링 비교를 한다네요.

https://mywiki.wooledge.org/BashPitfalls#A.5B.5B_.24foo_.3E_7_.5D.5D

김정균의 이미지

정수를 비교할 때는 다음도 가능 합니다.

exe_count=$(ps -ef | grep exe | wc -l)
if (( exe_count > 10 ));

(( )) 비교식은 변수에 $ 를 사용하지 않아도 되기 때문에 저는 애용하는 편입니다. 물론 써도 됩니다.

아무이름생각나의 이미지

if [ ... ]

여기서 `[` 는 배쉬에서 지원하는 문법이 아니고 실행 파일 입니다. `/usr/bin/[`

그런데 `man [` 하면 없다고 하구요 `man test` 하시면 맨페이지가 나옵니다.

https://superuser.com/questions/334549/what-is-usr-bin-and-how-do-i-use-it

if [[ ... ]]

여기서 [[ ... ]] 이 부분은 배쉬의 문법이구요. 그래서 같은 의미의 내용을 `[` 에 입력할 때도 문법의 차이가 있는 것 같습니다.

if [ 이것은 외부 명령어를 실행해서 참/거짓 값을 반환 받는 것이고,

if [[ 이것은 배쉬 내부적으로 처리하는 것이다.

오래된 기억이라 틀린 점이 없었으면 좋겠네요!

참고: 쉘 스크립트 하면 보통 스크립트 첫 줄에 쉐벵(#!/bin/sh 혹은 #!/bin/bash ...)을 쓰실 텐데 위의 문법에 차이를 이해하셔야 문제가 안 생길 수도 있습니다.

dontdieych의 이미지

What is the difference between test, [ and [[ ?

https://mywiki.wooledge.org/BashFAQ/031

gorogong의 이미지

말씀대로 한번 해볼게요

Prentice의 이미지

[[ 쓸 때는 부등호가 숫자 비교가 아닌 스트링 비교를 한다네요.

https://mywiki.wooledge.org/BashPitfalls#A.5B.5B_.24foo_.3E_7_.5D.5D

댓글 달기

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