Contents

Views 10047 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
[ 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
No. Category Subject Author Date Views
1113 Develop [Android Error] The number of method references in a .dex file cannot exceed 64K hooni 2016.11.10 754
1112 Develop [Android] 2010년에 만들었던 세미나 자료. file hooni 2013.05.28 64661
1111 Develop [android] AlertDialog 메시지 창 띄우기 hooni 2015.07.09 849
1110 Develop [android] Android N requires the IDE to be running with Java 1.8 or later 오류 hooni 2016.08.30 684
1109 Develop [android] ArrayAdapter 테스트 파일 ㅎㅎ hooni 2013.04.23 45241
1108 Develop [android] ArrayAdapter를 이용하여 출력하기 hooni 2013.04.23 47339
1107 Develop [android] Calling activity function from separate class hooni 2016.11.15 1155
1106 Develop [android] Canvas를 이용해 이미지 확대/축소 하기 hooni 2013.04.23 60741
1105 Develop [android] dp, px 서로 변환 hooni 2016.10.21 3373
1104 Develop [android] GCM 사용하기 1 (GCM 서비스 신청하기) file hooni 2013.07.06 51355
1103 Develop [android] How can I place app icon on launcher home screen? hooni 2016.11.15 1261
1102 Develop [android] keytool을 사용하여 키스토어 생성 hooni 2013.04.23 69511
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 98 Next
/ 98