Linux Shell整理小知识
2022/8/12 5:23:04
本文主要是介绍Linux Shell整理小知识,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
介绍两个命令
1. shopt
- shell option, 即shell的一些选项设置
[[email protected] ~]# shopt autocd off cdable_vars off cdspell off checkhash off checkjobs off checkwinsize on cmdhist on compat31 off ...
- 其用法如下
[[email protected] ~]# help shopt shopt: shopt [-pqsu] [-o] [optname ...] Set and unset shell options. Change the setting of each shell option OPTNAME. Without any option arguments, list all shell options with an indication of whether or not each is set. Options: -o restrict OPTNAMEs to those defined for use with `set -o' -p print each shell option with an indication of its status -q suppress output -s enable (set) each OPTNAME 开启功能 -u disable (unset) each OPTNAME 关闭功能 Exit Status: Returns success if OPTNAME is enabled; fails if an invalid option is given or OPTNAME is disabled.
2. extglob
- 使得shell支持额外的逻辑符,这里我用的主要是非符号
!
。 - 没找到在哪看shopt选项的说明,先找了别人博文总结的说明
?(pattern-list) 匹配给定模式零或一次 *(pattern-list) 匹配给定模式零次或多次 +(pattern-list) 匹配给定模式一次或多次 @(pattern-list) 匹配给定模式之一 !(pattern-list) 匹配除了给定的模式
- 用法:
mv !(a|dir) dir # 将当前目录内除了a的所有文件移入dir文件夹 rm !(*.txt) # 删掉除了txt后缀的全部文件
这篇关于Linux Shell整理小知识的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法