shell——shell输入输出
shell输入输出echo命令显示字符串echo "It is a test"显示不换行#!/bin/shecho -e "OK! \c" # -e 开启转义 \c 不换行显示结果定向至文件echo "It is a test" > myfile原样输出字符串,不进行转义或取变量(用单引号)echo '$name
'显示命令执行结果echo `data`printf 命令printf 模仿C程序库(library)里的printf()程序。printf命令的语
'显示命令执行结果echo `data`printf 命令printf 模仿C程序库(library)里的printf()程序。printf命令的语




