쉘스크립트 초보자 질문 드립니다.

gorogong의 이미지

#!/bin/bash
##v.2.0
 
export IP1="0"
export IP2="0"
export IP3="0"
export DATE=$(date +"%F")
PS3="Select the option "
 
select char in "1, Check IP" "2, IP List" "3, Exit" #"4"#
do
   case $char in
 
   1*)  read -p "Enter IP xxx.xxx.xxx. > " -t 20 IP1
        read -p "Enter start IP xxx > " -t 20 IP2
        read -p "Enter last IP xxx > " -t 20  IP3
 
        echo -e "\033[32;1m"IP Checking!"\033[0m"
        echo -e " " > /tmp/ip_list_$DATE > /dev/null
 
        while [[ $IP2 -lt $IP3 ]]; do
 
        ping -c 1 -w 1 $IP1$IP2 > /dev/null
 
        if [[ $? == 0 ]]; then
         echo $IP1$IP2 is In-use. >> /tmp/ip_list_$DATE ;
        else
         echo $IP1$IP2 is Dead or Available. >> /tmp/ip_list_$DATE ;
        fi
        IP2=$(($IP2+1))
        done
        echo -e "\033[31;1m"IP Check well done! please verify IP"\033[0m" ;;
 
   2*)  grep -q  Avail* 2> /dev/null < /tmp/ip_list_$DATE
        if [[ $? == 0 ]]; then
          grep -r --color=always Available /tmp/ip_list_$DATE |sort -u
        else
          echo -e "\033[31;3m"There is no available IP"\033[0m"
        fi  ;;
 
   3*)  echo "Good bye"; exit 0 ;;
 
   #4*)  echo "You choose not yet menu it will be add section coming soon asap" ;;
   *)   echo "!!Error select correctly number!!"
   esac
 
 
done

위와 같은 스크립트 실행 시 결과 값

1) 1, Check IP
2) 2, IP List
3) 3, Exit
<code>
 
이렇게 선택 숫자가 중복이 되어 나옵니다.
중복 제거를 위해 case문을 수정해서 재시도 해봤지만.. 그러면 스크립트가 제대로 동작을 못하더라구요..
혹시 좋은 방법이 있을까요?..
 
질문 봐주셔서 감사합니다.
chanik의 이미지

select 명령이 번호를 알아서 붙여주므로, 메뉴 항목마다 넣으신 번호를 빼고 메뉴명으로 직접 매칭하면 될 것 같네요.

select char in "Check IP" "IP List" "Exit" #"4"#
 ...
   "Check IP")  read -p "Enter IP xxx.xxx.xxx. > " -t 20 IP1
     ...
   "IP List")  grep -q  Avail* 2> /dev/null < /tmp/ip_list_$DATE
     ...
   "Exit")  echo "Good bye"; exit 0 ;;
gorogong의 이미지

아.. 자동 부여군요! 감사합니다 원하는 대로 작동 합니다!

댓글 달기

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