Shell 概述 二、Shell脚本执行方式 1、echo [选项] [输出内容]:输出相应的内容 选项: -e:支持反斜线控制的字符转换 \n:输出警告音 \b:退格键,也就是向左删除键 \n:换行符 \r:回车键 \t:制表符,也就是Tab键 \v:垂直制表符 \0nnn:按照八进制ASCLL码 ...
分类:
系统相关 时间:
2019-09-06 22:41:42
阅读次数:
118
执行shell脚本有以下3种方式:bashxxxxx.sh或者shxxxxx.sh(推荐使用)path/xxxxx.sh或者./xxxxx.sh(当前路径下执行脚本)sourcexxxxx.sh或者.xxxxx.sh(点后面有个空格。此种方式可以把自身shell变量的值传递给父shell使用)。第一种方式是当shell脚本没有可执行权限的时候用..
分类:
系统相关 时间:
2016-06-17 00:56:53
阅读次数:
243
执行方式:
nohup sh export_data.sh 20150102 >20150102.log 2>&1 &
[1] 29531
其中 0、1、2分别代表如下含义:
0 – stdin (standard input)
1 – stdout (standard output)
2 – stderr (standard error)
nohup+最...
分类:
系统相关 时间:
2015-01-04 21:27:48
阅读次数:
154
博客:http://lijinhuan.blog.51cto.com/微博:http://weibo.com/lijinhuanexperience微信:xiaoleetongxue一、shell脚本执行方式1、用sh命令执行脚本文件vihello.sh按i进入插入模式输入echo“helloworld!”:输入wq保存退出shhello.sh2、给脚本文件添加执行权限,用./命令执行c..
分类:
系统相关 时间:
2014-11-07 06:26:06
阅读次数:
238