echo "Your error message here" >&2
This is a normal echo (which goes to stdout), however the >&2
(which is shorthand for 1>&2
), means 'mix the stdout to the stderr'. 1
is stdout, and 2
is stderr here.
echo "Your error message here" >&2
This is a normal echo (which goes to stdout), however the >&2
(which is shorthand for 1>&2
), means 'mix the stdout to the stderr'. 1
is stdout, and 2
is stderr here.
上一篇:tophat
下一篇:55个最实用大数据可视化分析工具
大家好,我是老盖,首先感谢观看本文,本篇文章做的有视频,视频讲述的比较详细,也可以看我发布的视频。今天我们学习echo这个命令,它这个命令经常用于bat批处理脚本中,这个命令作用是显示信息,或将命令回显打开或关上。简单说有两个用法。第一个用法就是直接输出一个字符串,比如我输出echo 1654651651651 这样屏幕就显示了该字符串,这个功能经常用于提示用户或者调试脚本使用。第二个用法就是关闭
shell 输入与输出提纲: echo read cat 管道 tee 文件重定向 标准输入输出和错误 合并标准输出和标准错误 exec和使用文件描述符 文件重定向目标: 终端用户登录linux服务器,为每一个终端用户启动一个shell程序。1. echoecho命令可以
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M