笔记


  • 简介
  • 目录大纲
  • 最新文档

    linux常用命令

    docker system df -v ##查看镜像、容器占用空间大小 docker ps -as ##查看容器占用空间大小 cat -A a.txt ##查看文件中的格式是否正确

    admin - 2023年10月27日 17:26


    linux字符串截取

    7.Linux字符串截取命令 假设有变量 var=http://www.google.com/test.htm 1、 # 号截取,删除左边字符,保留右边字符。 echo ${var#//} 其中 var 是变量名,# 号是运算符,// 表示从左边开始删除第一个 // 号及左边的所有字符 即删除 http:// 结果是 :www.google.com/test.htm 2、 ## 号截取,删除左边字……

    admin - 2023年10月26日 10:41


    批量修改文件名称

    [root@yx conf]# ls dnsservice-template.xml imapserver-template.xml lib mailbox-template.xml quota-template.xml usersreposito……

    admin - 2023年10月26日 09:43


    shell学习资料

    【附件】第19章-shell脚本基础.docx 【附件】第20章-条件判断和流程控制语句If.docx 【附件】第21章-结构化命令case-for-while.docx 【附件】第22章-跳出循环-shift参数左移-函数的使用.docx 【附件】第23章-expect-正则表达式-sed-cut的使用.docx 【附件】第24章-shell中色彩处理和awk使用技巧.docx https://……

    admin - 2023年9月15日 15:59


    配源

    openEuler配置epel源 curl -o /etc/yum.repos.d/epel-OpenEuler.repo https://down.whsir.com/downloads/epel-OpenEuler.repo yum clean metadata yum makecache yum install epel-release -y >/dev/null 2>&……

    admin - 2023年6月7日 16:56



    admin