标签:搜索 oam control 当前目录 调用 inux set 执行 tab键
1. 命令行扩展$(CMD) OR ` CMD `
结论
[root@centos7 ~]# echo "echo $HOSTNAME"
echo centos7
[root@centos7 ~]# echo ‘echo $HOSTNAME‘
echo $HOSTNAME
[root@centos7 ~]# echo `echo $HOSTNAME`
centos7
[root@centos7 ~]# echo "i‘m $(hostname)"
i‘m centos7
[root@centos7 ~]# echo "i‘am `whoami`"
i‘am root
[root@centos7 ~]# echo `hostname`-`date +%F`
centos7-2020-11-06
[root@centos7 ~]# touch `date +%F`.txt
[root@centos7 ~]# ll
-rw-r--r--. 1 root root 0 11月 6 22:06 2020-11-06.log
-rw-r--r--. 1 root root 0 11月 6 22:19 2020-11-06.txt
[root@centos7 ~]# ll $(echo $(date +%F).txt)
-rw-r--r--. 1 root root 0 11月 6 22:17 2020-11-06.txt
[root@centos7 ~]# ll `echo $(date +%F).txt`
-rw-r--r--. 1 root root 0 11月 6 22:17 2020-11-06.txt
[root@centos7 ~]# ll $(echo `date +%F`.txt)
-rw-r--r--. 1 root root 0 11月 6 22:17 2020-11-06.txt
{} 可以实现打印重复字符串的简化形式
[root@centos7 ~]# echo file{1,3,4}
file1 file3 file4
[root@centos7 ~]# echo {1..10}
1 2 3 4 5 6 7 8 9 10
[root@centos7 ~]# echo {1..10..2}
1 3 5 7 9
[root@centos7 ~]# echo {000..10..2}
000 002 004 006 008 010
[root@centos7 ~]# echo {a..z}
a b c d e f g h i j k l m n o p q r s t u v w x y z
whoami
" 显示时间和用户 HISTIGNORE="str1:str2*:…" 忽略str1命令,str2开头的历史 H以上变量可以 export 变量名="值" 形式存放在 /etc/pro?le 或 ~/.bash_pro?le
!!
!-1
Ctrl+p
!n
!-n
!$
!\*
Ctrl-r
Ctrl+g
002. Linux基础二 (命令行/括号拓展、TAB、history)
标签:搜索 oam control 当前目录 调用 inux set 执行 tab键
原文地址:https://blog.51cto.com/abyssce/2547460