조회 수 10048 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
[ Shell을 이용한 BBS ]

--------------------------------------------------------
                     WELCOME TO MY BBS
--------------------------------------------------------
   1. List the files on the BBS.
   2. Read a file.
   3. Mail to manager.
   4. Talk to friend.
   5. Exit.
--------------------------------------------------------
   Put the number:


메인 메뉴에서 사용자가 "1"을 입력하면, 다음과 같은 화면이 나온다.
-------------------------------------------------------
                    Files  to  Read
-------------------------------------------------------
1               4               6.hwp           cobol
2               6               7               cover
3               6.bak           999.hwp         cover
-------------------------------------------------------


메인 메뉴에서 사용자가 "2"를 입력하면, 다음과 같은 화면이 나온다.
-------------------------------------------------------
Put the file name to read:
-------------------------------------------------------
사용자가 파일 이름을 입력하면, BBS는 화일의 내용을 화면에 출력한다.



메인 메뉴에서 "3"을 입력하면, root에게 메일을 보낼수 있도록 한다.
        mail  root


메인 메뉴에서 "4"를 입력하면, 다음과 같이 시스템에 로그인한
사람들을 화면에 보여준다.
-------------------------------------------------------
                 Users who login this system are..
-------------------------------------------------------
Login       Name              TTY Idle    When    Where
mhyun    Yun myungwha          p0   35 Fri 19:45  Enigma
kjkim    Kwan-joong Kim        p1 5:26 Tue 17:28  brahms
jmchoi   Choi Jong Myung      *p2      Fri 17:11  hannah
jmchoi   Choi Jong Myung       p3      Fri 21:46  hannah
-------------------------------------------------------
         Put the login name to talk:
토크하고 싶은 사람의 로그인 이름을 입력하면, 토크를 한다.


메인 메뉴에서 "5"를 입력하면, BBS에서 빠져나간다.
--------------------------------------------------------------------------------

Shell을 이용해 작성한 BBS는 다음과 같다.
#!/bin/csh
#
onintr  begin
while(1)
begin:
echo -------------------------------------------------------------------------
echo           "                    VERY SIMPLE BBS(VSBBS)"
echo -------------------------------------------------------------------------
echo    "   1.list all files"
echo    "   2.read a file"
echo    "   3.mail"
echo    "   4.talk to friend"
echo    "   5.exit"
echo "-------------------------------------------------------------------------"
echo    "      Put the number you want:c"

set num = $<
if("$num" == 1)then
    echo ---------------------------------------------------------------------------
    echo "                   File list "
    echo ===========================================================================
    ls
else if("$num" == 2)then
    echo " Put the file name you want to read:c "
    set file = $<
    more $file
else if("$num" == 3)then
     echo "----------------------------------------------------"
     echo "to mail admin, press a.       to mail friend,press f"
     echo "----------------------------------------------------"
     set select = $<
     switch($select)
        case [aA]:
                mail root
                breaksw
        case [fF]:
            echo  "Input the name :c "
            set friend = $<
                mail $friend
            breaksw
    endsw
else if("$num" == 4)then
     echo "---------------------------------------------------"
     echo "                      Users on the system "
     echo "---------------------------------------------------"
     finger
     echo "---------------------------------------------------"
     echo "Input the name of person :c "
     set person = $<
     talk $person
else if("$num" == 5)then
     echo good_bye
     exit 0
endif
end

?

  1. [c] 정사각배열의 서브 배열의 최대 값 구하기

    Date2003.04.23 CategoryDevelop Byhooni Views7025
    Read More
  2. [c] 단어 입력/수정 프로그램 소스

    Date2003.04.23 CategoryDevelop Byhooni Views7029
    Read More
  3. [c] 농구팀 점수 산출 프로그램 소스

    Date2003.04.23 CategoryDevelop Byhooni Views7386
    Read More
  4. [자료구조] 트리(tree) 용어정리

    Date2003.04.23 CategoryDevelop Byhooni Views11071
    Read More
  5. [c] 이진트리(binary tree)의 특성

    Date2003.04.23 CategoryDevelop Byhooni Views9611
    Read More
  6. [c] 이진트리(binary tree)의 운행..

    Date2003.04.23 CategoryDevelop Byhooni Views8271
    Read More
  7. [c] 근의 공식으로 2차방정식 풀기..

    Date2003.04.23 CategoryDevelop Byhooni Views7778
    Read More
  8. [c] 학생명단 관리 프로그램 소스 ㅋㅋ

    Date2003.04.23 CategoryDevelop Byhooni Views7774
    Read More
  9. [jsp][php] 간단한 강좌 자료..

    Date2003.04.23 CategoryDevelop Byhooni Views8112
    Read More
  10. [c] flooding 알고리즘 미로 찾기(도스용) 소스코드

    Date2003.04.23 CategoryDevelop Byhooni Views12527
    Read More
  11. [c] 테트리스(Tetris) 게임(도스용) 소스코드

    Date2003.04.23 CategoryDevelop Byhooni Views11480
    Read More
  12. [c] 파일입출력, 링크리스트(linked list)를 이용한 주소록(도스용) 소스코드

    Date2003.04.23 CategoryDevelop Byhooni Views11155
    Read More
  13. [c] 간단한 자료구조(stack, queue, linked list) 구현 소스

    Date2003.04.23 CategoryDevelop Byhooni Views10120
    Read More
  14. [unix] 쉘 스크립트 예제 모음

    Date2003.04.23 CategoryDevelop Byhooni Views14950
    Read More
  15. [linux] 쉘 스크립트를 이용한 BBS

    Date2003.04.23 CategoryDevelop Byhooni Views10048
    Read More
  16. [c] pcap을 이용한 패킷 분석 ㅎㅎ

    Date2003.04.23 CategoryDevelop Byhooni Views10210
    Read More
Board Pagination Prev 1 ... 48 49 50 51 52 53 Next
/ 53