kooyee ‘s blog

开源软件, 众人努力的结晶, 全人类的共同财富
posts - 103, comments - 55, trackbacks - 0, articles - 66
   :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

【Linux】常用命令大全

Posted on 2008-12-01 01:01 kooyee 阅读(638) 评论(0)  编辑  收藏 所属分类: Lniux/Unix

rmdir

Remove directory, this command will only work if the folders are empty. 移除一个空文件夹
Syntax
      rmdir [options]... folder(s)...
Options
      --ignore-fail-on-non-empty
                  Ignore each failure that is solely because the
                  directory is non-empty.
  -p, --parents   Remove explicit parent directories if being emptied

      --verbose   Output a diagnostic for every directory processed

      --help      Display help and exit

      --version   Output version information and exit

Example
$ rmdir myfolder
Before removing directories with a wildcard, it's wise to list them first:
$ ls -d britney*/


rm

Remove files

rm -rf

remove non-empty folder(rm -rf will recursively remove folders and their contents)

ls -al
 
List information about files

tar

压缩,解压文件命令

把其他路径下的压缩文件解压到当前文件夹:

tar zxvf  / usr / local / xxx.tar.gz

patch

为文件打补丁

patch –p0 < patchfile.patch

只有注册用户登录后才能发表评论。


网站导航: