쉘스크립트 공부를 시작해서 예제 연습중인데요..

king1682의 이미지

제가 하려는 목표는 요정도인데, 시작한지 얼마안되서 그런지 너무어렵습니다 ㅠㅠ

도움좀 받고싶습니다 ㅠㅠ 따라할 수 있도록 조금만 도움주세요!!

키보드의 입력을 받을 수 있어야 한다.
키보드로 P를 입력하면, 프로세스들의 리스트를 출력(PS명령어 활용)하여야 한다.
키보드로 K를 입력하면, 프로세스 ID를 다시 입력받아야 한다.
키보드로 K와 프로세스 ID를 입력받고나면, 그 ID 프로세스를 강제종료토록 한다.(kill명령어 활용)
키보드로 Q 또는 X를 입력받으면, 동작하는 스크립트를 종료한다.

키보드 입력은 select 이용해서 하면 될거같은데,, 뭐가 짜지질않네요..
첫번째부터 막혀서 너무 답답합니다 ㅠ

김정균의 이미지

이정도 예제를 가지고 응용을 해 보세요. 성공 하셨다면, 아래의 예제는 입력을 한자 이상 받을 수 있습니다.
이 예제를 한자만 입력 받을 수 있도록 수정해 보는 식으로 확장을 하면서 공부를 하시면 괜찮을 듯 싶겠네요.

#!/bin/bash
 
echo -n "Input your choise : "
read answer
 
case $answer in
    a|A)
        echo "answer is a";
        ;;
    b|B)
        echo "answer is a";
        ;;
    c|C)
        echo "answer is c";
        ;;
    *)
        echo "answer isn't a or b or c"
esac
king1682의 이미지

많은 도움 주셔 감사합니다..

염치없이 하나만 더 여쭤도 댈지요..ㅠㅠ

키보드로 K를 입력하면, 프로세스 ID를 다시 입력받아야 한다.
키보드로 K와 프로세스 ID를 입력받고나면, 그 ID 프로세스를 강제종료토록 한다.(kill명령어 활용)

이 부분을 하는중인데 k입력 받은후 프로세스 ID를 다시 입력받는다는게 이해가 잘안가서요..
그리고 입력받고나서 강제종료는 kill을 강제로 실행하면 될거같은데..

저부분 도움좀 주실수 있으신가요?

ddoman의 이미지

echo -n "K를 누르고, 엔터를 눌러보세요. "
read answer

if [ "$answer" == "K" ]; then
echo -n "자, 이제 PID(숫자)를 입력하고, 엔터를 눌러보세요.
read pid
echo "입력하신 PID는 $pid"
fi

king1682의 이미지

도움주셔감사합니다.

참 속답답햇는데 확풀리네요.

king1682의 이미지

#FileName : Homework
#!/bin/bash

echo -n "p = 리스트출력, k = 프로세스 강제종료, q or x = 동작스크립트 종료 : "
read answer

case $answer in
p|P)
echo "answer is p";
$ ps -e
;;
k|K)
echo "answer is k";
$ read answer
$ answer in "ID :"
$ kill
;;
q|Q)
echo "answer is q";
$ exit
;;
x|X)
echo "answer is x";
$ exit
;;

*)
echo "answer isn't p or k or q or x"
esac

king1682의 이미지

ㅜㅜ

댓글 달기

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