博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【CentOS 7笔记32】,通配符、输入输出重定向#
阅读量:6390 次
发布时间:2019-06-23

本文共 2636 字,大约阅读时间需要 8 分钟。

hot3.png

shallow丿ove


通配符

[root@localhost ~]# ls	111  1.txt      222      2.txt  3.txt  abc      anaconda-ks.cfg  b.txt	123  1.txt.tar  222.zip  333    9.txt  abc.txt  a.txt            text.txt.bz2[root@localhost ~]# ls *txt	#以txt为后缀的所有字符的文件或目录	1.txt  2.txt  3.txt  9.txt  abc.txt  a.txt  b.txt[root@localhost ~]# ls *txt*	#以中间字符为txt的所有字符的文件或目录1.txt  1.txt.tar  2.txt  3.txt  9.txt  abc.txt  a.txt  b.txt  text.txt.bz2
[root@localhost ~]# ls ?.txt	#以txt为后缀的一个或零个任意字符的文件或目录1.txt  2.txt  3.txt  9.txt  a.txt  b.txt
[root[@localhost](https://my.oschina.net/u/570656) ~]# ls [13].txt	1.txt  3.txt[root[@localhost](https://my.oschina.net/u/570656) ~]# ls [29].txt	2.txt  9.txt[root[@localhost](https://my.oschina.net/u/570656) ~]# ls [0-9].txt	#指范围	1.txt  2.txt  3.txt  9.txt[root[@localhost](https://my.oschina.net/u/570656) ~]# ls [0-9a-z].txt	1.txt  2.txt  3.txt  9.txt  a.txt  b.txt
[root[@localhost](https://my.oschina.net/u/570656) ~]# ls {2,9,b}.txt	#如同[29b].txt	2.txt  9.txt  b.txt

输入输出重定向

正确输入重定向>

[root@localhost ~]# echo helloworld > 1.txt[root@localhost ~]# cat 1.txt	helloworld[root@localhost ~]# echo helloworld > 1.txt[root@localhost ~]# cat 1.txt	helloworld

正确追加输入重定向>>

[root@localhost ~]# echo helloworld >> 1.txt[root@localhost ~]# echo helloworld >> 1.txt[root@localhost ~]# cat 1.txt	helloworld	helloworld	helloworld

错误输入重定向2>

[root@localhost ~]# la / > 1.txt	-bash: la: command not found[root@localhost ~]# cat 1.txt[root@localhost ~]# la / 2> 1.txt[root@localhost ~]# cat 1.txt	-bash: la: command not found

错误追加输入重定向2>>

[root@localhost ~]# la / 2>> 1.txt[root@localhost ~]# la / 2>> 1.txt[root@localhost ~]# cat 1.txt	-bash: la: command not found	-bash: la: command not found	-bash: la: command not found

正确和错误输入重定向&>

[root@localhost ~]# ls	111  1.txt      222      2.txt  3.txt  abc      anaconda-ks.cfg  b.txt	123  1.txt.tar  222.zip  333    9.txt  abc.txt  a.txt            text.txt.bz2[root@localhost ~]# ls 111.txt 111	ls: cannot access 111.txt: No such file or directory	111:[root@localhost ~]# ls 111.txt 111 &> 1.txt[root@localhost ~]# cat 1.txt	ls: cannot access 111.txt: No such file or directory	111:

正确和错误追加输入重定向&>>

[root@localhost ~]# ls 111.txt 111 &>> 1.txt[root@localhost ~]# ls 111.txt 111 &>> 1.txt[root@localhost ~]# cat 1.txt	ls: cannot access 111.txt: No such file or directory	111:	ls: cannot access 111.txt: No such file or directory	111:	ls: cannot access 111.txt: No such file or directory	111:

输出重定向

[root@localhost ~]# wc -l 1.txt	6 1.txt[root@localhost ~]# wc -l < 1.txt	6[root@localhost ~]# 2.txt < 1.txt	#左边必须为命令	-bash: 2.txt: command not found

以此类推


转载于:https://my.oschina.net/u/3892756/blog/3056523

你可能感兴趣的文章
判断两矩形是否相交
查看>>
第7章 "敏捷+"项目管理
查看>>
Sublime-text gitHub 问题收集
查看>>
UML 类图
查看>>
Unity Remote 无法连接
查看>>
linux下core file size设置笔记
查看>>
mysql 、redis的区别
查看>>
使用JPA中@Query 注解实现update 操作
查看>>
7.4. APC Cache (php-apc - APC (Alternative PHP Cache) module for PHP 5)
查看>>
Web 仪表盘
查看>>
我的Fedora 7硬盘安装过程
查看>>
18.4. FAQ
查看>>
Python——SSHClient.py
查看>>
MVC解决更新冲突问题
查看>>
江西理工大学南昌校区cool code竞赛
查看>>
[LeetCode] Trim a Binary Search Tree 修剪一棵二叉搜索树
查看>>
Ubuntu SDL lib 安装
查看>>
Java 并发编程内部分享PPT分享
查看>>
关于discuz中禾金投票系统循环出现引导页的问题
查看>>
C#开源系统大汇总
查看>>