Linux的set命令
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
文章作者:Tyan
博客:noahsnail.com | CSDN | 简书
1. set命令介绍
set
命令主要用来设置shell,在编写shell脚本时,使用set
命令能设置shell的执行方式,根据需求不同,采用的参数设置也不同。set
命令也用来显示系统中已存在的shell变量以及设置新的shell变量。
2. set命令的常用参数及作用
- set
不带参数的set
命令用来显示环境变量。
root@3500f62fe5ae:/workspace# set
BASH=/bin/bash
BASHOPTS=checkwinsize:cmdhist:complete_fullquote:expand_aliases:extquote:force_fignore:histappend:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
BASH_ALIASES=()
BASH_ARGC=()
BASH_ARGV=()
BASH_CMDS=()
BASH_LINENO=()
BASH_SOURCE=()
BASH_VERSINFO=([0]="4" [1]="3" [2]="48" [3]="1" [4]="release" [5]="x86_64-pc-linux-gnu")
BASH_VERSION='4.3.48(1)-release'
COLUMNS=236
CUDA_HOME=/usr/local/cuda
CUDA_PKG_VERSION=10-0=10.0.130-1
CUDA_VERSION=10.0.130
CUDNN_VERSION=7.6.0.64
...
- set -e
-e
参数表示只要shell脚本中发生错误,即命令返回值不等于0,则停止执行并退出shell。set -e
在shell脚本中经常使用。默认情况下,shell脚本碰到错误会报错,但会继续执行后面的命令。
test.sh
脚本内容如下:
#!/usr/bin/env bash
set -e
hello
echo "Hello set"
执行结果如下:
root@3500f62fe5ae:/workspace# sh test.sh
test.sh: 4: test.sh: hello: not found
注:set +e
表示关闭-e选项,set -e
表示重新打开-e选项。
- set -u
-u
参数表示shell脚本执行时如果遇到不存在的变量会报错并停止执行。默认不加-u
参数的情况下,shell脚本遇到不存在的变量不会报错,会继续执行。
test.sh
脚本内容如下:
#!/usr/bin/env bash
echo $test
set -u
echo $hello
执行结果如下:
root@3500f62fe5ae:/workspace# sh test.sh
test.sh: 5: test.sh: hello: parameter not set
参考资料
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献11条内容
所有评论(0)