LinuxCommandLine -- 5 [Shell 特性]

echo

echo 将其参数送到 stdout

$ echo I am using Linux.
I am using Linux.

Expansion

shell 在执行命令之前,会将通配符替换成对应的文件名

$ ls
error.sh  error.txt  programs.txt  test

$ echo *
error.sh error.txt programs.txt test

计算

计算仅支持整数(结果也是整数)

操作符:

  • +
  • -
  • *
  • /
  • %
  • **
$ echo $((2 + 2))
4

$ echo amount: $((6 * 3))
amount: 18

{} Brace Expansion

# 在花括号中指定一组值
$ echo file_{a,b}
file_a file_b

# 在花括号中指定一个范围
$ echo file_{a..d}
file_a file_b file_c file_d

# 前导零
$ echo file_{01..09}
file_01 file_02 file_03 file_04 file_05 file_06 file_07 file_08 file_09

# 嵌套
$ echo a{A{1,2},B{3,4}}b
aA1b aA2b aB3b aB4b

# 根据日期创建一系列文件夹来存放照片
$ mkdir photos
$ cd photos/
$ mkdir 2018-{01..12}
$ ls
2018-01  2018-02  2018-03  2018-04  2018-05  2018-06  2018-07  2018-08  2018-09  2018-10  2018-11  2018-12

Parameter Expansion

$parameter 可以用于查看环境变量的值

$ echo $USER
admin

$ blog='JianShu'
$ echo $blog
JianShu

# 查看所有环境变量
$ printenv

Command Substitution

$() 可以将一个命令的输出,作为另一个命令的参数


$ which python
/usr/bin/python

$ ls -l $(which python)
lrwxrwxrwx. 1 root root 7 Apr 21 22:01 /usr/bin/python -> python2

# 旧版本
$ ls -l `which python`
lrwxrwxrwx. 1 root root 7 Apr 21 22:01 /usr/bin/python -> python2

$ ls -d /usr/bin/* | grep zip
/usr/bin/gpg-zip
/usr/bin/gunzip
/usr/bin/gzip

$ file $(ls -d /usr/bin/* | grep zip)
/usr/bin/gpg-zip: POSIX shell script, ASCII text executable
/usr/bin/gunzip:  POSIX shell script, ASCII text executable
/usr/bin/gzip:    ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, BuildID[sha1]=31a65cac38d3c43e1414595f0819a2b9b717b4cf, stripped

用引号来阻止 Shell 特性

  • "" 双引号仅保留 $ \ ` 3个 Shell 特性
  • '' 单引号将所有内容视为文本
  • \ 转义序列
# 默认情况下,Shell 将空白字符(空格, tab, 换行符)视为参数间的分隔符
$ echo Hello    World
Hello World

# 适用双引号,Shell 会将下面字符串当成一个参数
$ echo "Hello    World"
Hello    World

# $(cal) 的空白字符被当作参数之间的分隔符()
$ echo $(cal)
April 2018 Su Mo Tu We Th Fr Sa 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

# 共有 39 个参数
echo $(cal) | wc -w
39

# 将 $(cal) 的结果作为一个参数
$ echo "$(cal)"
     April 2018
Su Mo Tu We Th Fr Sa
 1  2  3  4  5  6  7
 8  9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
LinuxCommandLine -- 5 [Shell 特性]_第1张图片
escape

你可能感兴趣的:(LinuxCommandLine -- 5 [Shell 特性])