美文网首页linux
linux常用命令总结

linux常用命令总结

作者: solfKwolf | 来源:发表于2020-03-24 23:02 被阅读0次

    文件管理

    • find
    find   path   -option   [   -print ]   [ -exec   -ok   command ]   {} \;
    
    # 查询当前目录以及子目录所有文件名后缀为md的文件
    find . -name "*.md"
    
    • chmod
    [ugoa...][[+-=][rwxX]...][,...]
    
    • who

    显示当前登录系统的用户

    who  //显示当前登录系统的用户
    root   tty7     2014-05-13 12:12 (:0)
    root   pts/0    2014-05-14 17:09 (:0.0)
    root   pts/1    2014-05-14 18:51 (192.168.1.17)
    root   pts/2    2014-05-14 19:48 (192.168.1.17)
    
    -H 显示标题栏
    
    • whoami 和 who am i的区别
      • whoami 显示的是当前“操作用户”的用户名
      • who am i显示的是“登录用户”的用户名(用户登录时用过的id)

    磁盘管理

    • pwd

    显示当前路径

    文档编辑

    • wc

    用于计算字数

    wc [-clw][--help][--version][文件...] 
    
    $ wc testfile           # testfile文件的统计信息  
    3 92 598 testfile       # testfile文件的行数为3、单词数92、字节数598 
    

    备份压缩

    • tar
    tar [-ABcdgGhiklmMoOpPrRsStuUvwWxzZ][-b <区块数目>][-C <目的目录>][-f <备份文件>][-F <Script文件>][-K <文件>][-L <媒体容量>][-N <日期时间>][-T <范本文件>][-V <卷册名称>][-X <范本文件>][-<设备编号><存储密度>][--after-date=<日期时间>][--atime-preserve][--backuup=<备份方式>][--checkpoint][--concatenate][--confirmation][--delete][--exclude=<范本样式>][--force-local][--group=<群组名称>][--help][--ignore-failed-read][--new-volume-script=<Script文件>][--newer-mtime][--no-recursion][--null][--numeric-owner][--owner=<用户名称>][--posix][--erve][--preserve-order][--preserve-permissions][--record-size=<区块数目>][--recursive-unlink][--remove-files][--rsh-command=<执行指令>][--same-owner][--suffix=<备份字尾字符串>][--totals][--use-compress-program=<执行指令>][--version][--volno-file=<编号文件>][文件或目录...]
    
    
    -v或--verbose 显示指令执行过程。
    

    相关文章

      网友评论

        本文标题:linux常用命令总结

        本文链接:https://www.haomeiwen.com/subject/bwfzyhtx.html