linux特殊引导符号
2022/8/22 5:53:19
本文主要是介绍linux特殊引导符号,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
linux特殊引导符号
名称 | 解释 |
---|---|
单引号' ' | 所见即所得,强引用,单引号中内容会原样输出 |
双引号" " | 弱引用,能够识别各种特殊符号、变量、转义符等、解析后输出结果 |
没有引号 | 一般连续字符串、数字、路径可以省略双引号、遇见特殊字符、空格、变量等,必须加上双引号 |
反引号`` | 常用于引用命令结果,同$(命令) |
反引号案例
[[email protected] test_time]# touch date +%F.txt [[email protected] 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 [[email protected] test_time]# touch date "date +%T > ^C [[email protected] test_time]# touch date "date +%T" [[email protected] 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 [[email protected] test_time]# touch "`date +%T`".txt [[email protected] 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 [[email protected] test_time]# touch "`date +%T`".txt [[email protected] test_time]# touch "`date +%T`".txt##正确 [[email protected] 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 [[email protected] test_time]# touch "此时时间`date +%T`".txt [[email protected] 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 [[email protected] test_time]#
输入重定向特殊符号
其他特殊符号
符号 | 解释 |
---|---|
: | 分好,命令分隔符或是结束符 |
# | 1.文件中注释的内容 2.root身份提示符 |
管道符,传递命令结果给下一个命令 | |
$ | 1.$变量,取出变量的值 2.普通用户身份提示符 |
\ | 转义符,将特殊含义的字符还原成普通字符 |
{} | 1生成序列 2.引用变量作为变量与普通字符的分割 |
这篇关于linux特殊引导符号的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南