Contents

조회 수 10047 댓글 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


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
265 Develop [ajax] 이벤트 코드 생성기 작업중.. ㅋㅋ file hooni 2013.04.23 7116
264 Develop [php] 날짜 정보 출력 (년,월,일,시,분,초) hooni 2013.04.23 10497
263 Develop [c] KNN(K-nearest neighbor) 패턴인식 과제.. file hooni 2013.04.23 7389
262 Develop [c] 베이지언(Bayesian) 패턴인식 과제 ㅋㅋ file hooni 2013.04.23 7094
261 Develop [js] php의 number_format() 함수와 같은.. ㅋㅋ hooni 2013.04.23 6931
260 Develop [c] 숫자 맞추는 게임.. file hooni 2013.04.23 6929
259 Develop [c] 구조체 배열 예제 (학생 성적 계산) file hooni 2013.04.23 7666
258 Develop [c] 프로그램 코드(c/c++)를 html 파일로 변환 file hooni 2013.04.23 7677
257 Develop [c] 전위 표기법으로 연산 예제.. file hooni 2013.04.23 9304
256 Develop [ajax] 샘플 코드와 한글처리에 대한 간단한 설명 hooni 2013.04.23 6842
255 Develop [js] 폼(form) 전송시 중복 클릭 방지 간단한 구문 hooni 2013.04.23 9316
254 Develop [js] 사진첩에 쓸 내용 - 마우스 오버로 바꾸기 hooni 2013.04.23 6338
Board Pagination Prev 1 ... 44 45 46 47 48 49 50 51 52 53 ... 71 Next
/ 71