| RedHat Linux  >> Fundamentals of the GNU/Linux
	 | 
| [목차] | 
| 
제3장  리눅스 명령어
 12. 디렉토리 지우기 - rmdir  생성되어 있는 디렉토리를 삭제하고자 할 때는 'rmdir' 이라는 명령어를 사용하면 됩니다.
 [root@leelab /root]# ls -p gnustep/ nsmail/ test.txt test2/ xrootenv.0 test/ test1/ [root@leelab /root]# rmdir test2 [root@leelab /root]# ls -p gnustep/ xrootenv.0 nsmail/ test/ test.txt test1/ [root@leelab /root]#
 마찬가지로 한꺼번에 여러 디렉토리를 없앨 수도 있습니다.
 [root@leelab /root]# ls -p gnustep/ xrootenv.0 nsmail/ test/ test.txt test1/ [root@leelab /root]# rmdir test test1 [root@leelab /root]# ls -p gnustep/ xrootenv.0 nsmail/ test.txt [root@leelab /root]#
  | 
| [목차] | 
