linux特殊引导符号

linux特殊引导符号

名称 解释
单引号' ' 所见即所得,强引用,单引号中内容会原样输出
双引号" " 弱引用,能够识别各种特殊符号、变量、转义符等、解析后输出结果
没有引号 一般连续字符串、数字、路径可以省略双引号、遇见特殊字符、空格、变量等,必须加上双引号
反引号`` 常用于引用命令结果,同$(命令)

反引号案例

[root@xuexi3 test_time]# touch date +%F.txt
[root@xuexi3 test_time]# ll
total 0
-rw-r--r--. 1 root root 0 Aug 21 17:01 date
-rw-r--r--. 1 root root 0 Aug 21 17:01 +%F.txt
[root@xuexi3 test_time]# touch date "date +%T
> ^C
[root@xuexi3 test_time]# touch date "date +%T"  
[root@xuexi3 test_time]# ll
total 0
-rw-r--r--. 1 root root 0 Aug 21 17:02 date
-rw-r--r--. 1 root root 0 Aug 21 17:02 date +%T
-rw-r--r--. 1 root root 0 Aug 21 17:01 +%F.txt
[root@xuexi3 test_time]# touch "`date +%T`".txt
[root@xuexi3 test_time]# ll
total 0
-rw-r--r--. 1 root root 0 Aug 21 17:05 17:05:03.txt
-rw-r--r--. 1 root root 0 Aug 21 17:02 date
-rw-r--r--. 1 root root 0 Aug 21 17:02 date +%T
-rw-r--r--. 1 root root 0 Aug 21 17:01 +%F.txt
[root@xuexi3 test_time]# touch "`date +%T`".txt
[root@xuexi3 test_time]# touch "`date +%T`".txt##正确
[root@xuexi3 test_time]# ll
total 0
-rw-r--r--. 1 root root 0 Aug 21 17:05 17:05:03.txt
-rw-r--r--. 1 root root 0 Aug 21 17:06 17:06:09.txt
-rw-r--r--. 1 root root 0 Aug 21 17:06 17:06:11.txt
-rw-r--r--. 1 root root 0 Aug 21 17:02 date
-rw-r--r--. 1 root root 0 Aug 21 17:02 date +%T
-rw-r--r--. 1 root root 0 Aug 21 17:01 +%F.txt
[root@xuexi3 test_time]# touch "此时时间`date +%T`".txt
[root@xuexi3 test_time]# ll
total 0
-rw-r--r--. 1 root root 0 Aug 21 17:05 17:05:03.txt
-rw-r--r--. 1 root root 0 Aug 21 17:06 17:06:09.txt
-rw-r--r--. 1 root root 0 Aug 21 17:06 17:06:11.txt
-rw-r--r--. 1 root root 0 Aug 21 17:02 date
-rw-r--r--. 1 root root 0 Aug 21 17:02 date +%T
-rw-r--r--. 1 root root 0 Aug 21 17:01 +%F.txt
-rw-r--r--. 1 root root 0 Aug 21 17:06 此时时间17:06:40.txt
[root@xuexi3 test_time]# 


输入重定向特殊符号

image-20220821172422021

image-20220821173816538

其他特殊符号

符号 解释
: 分好,命令分隔符或是结束符
# 1.文件中注释的内容 2.root身份提示
管道符,传递命令结果给下一个命令
$ 1.$变量,取出变量的值 2.普通用户身份提示
\ 转义符,将特殊含义的字符还原成普通字符
{} 1生成序列 2.引用变量作为变量与普通字符的分割

相关文章

/etc/sysctl.conf这个目录主要是配置一些系统信息,/etc/sys...
1.作用 useradd或adduser命令用来建立用户帐号和创建用户的起...
它们都是多模式编辑器,不同的是vim 是vi的升级版本,它不仅...
不管是我们在安装软件还是监测软件的使用性能,我们都要随时...
装好Tomcat7后,发现除了本机能访问外界访问不了,岂有此理。...
修改防火墙配置需要修改 /etc/sysconfig/iptables 这个文件,...