shell中 echo 和printf 都能用作输出,printf可以算是echo的增强版 显示转义字符 echo \""abcdef\"" >>> "abcdef" 显示变量 age=23 echo "my age is $age" >>>my name is 23 在使用的过程中,为了避免引起歧义,多使用${age} 显示换行 echo “ok\n“ echo "my name…
#!/bin/sh _________echo___________#read name #echo "$name It is a test" #read命令从标准的输入中读取一行,并把输入方的每个字段的值指定给shell变量#echo "OK! \n"#echo -e "OK! \n" # -e 开启转义#echo -e "ok! "#echo "It is a test !!!" > myfile…
shell的echo指令是输出语句 就好比Python的print 在显示字符串的时候可以省略双引号 但是最好还是带上 echo ' Ti is a dashaobing' echo Ti is a dashaobing 这两个的输出的结果是一样的 2.显示转义字符 echo " \"IT is a dsb\"" 结果是: "IT is a dsb" 转义字符需要用双引号给括起来 同样还可以写成: echo \"IT is a ds…
echo是Shell的一个内部指令,用于在屏幕上打印出指定的字符串.命令格式: echo arg 您可以使用echo实现更复杂的输出格式控制. 显示转义字符 echo "\"It is a test\"" 结果将是:"It is a test" 双引号也可以省略. 显示变量 name="OK" echo "$name It is a test" 结果将是:OK It is a test 同样双引号也可以省略…