`

linux set - set variables and set positional parameters

阅读更多
【基本介绍】
set是shell的内置命令。可以用来设置修改变量,设置变量的位置


【参数介绍】
-e当还回值非0是立即退出脚本
-o设置内置环境变量
  set [+abefhkmnptuvxBCEHPT] [+o option] [arg ...]
              -e      Exit immediately if a pipeline (which may consist of a single simple command),  a subshell command enclosed  in  paren-
              -o option-name
                      The option-name can be one of the following:
                      allexport
                              Same as -a.


【基本使用】
1.配置环境变量
[root@pandaVM script]# set | head -10
BASH=/bin/bash
BASHOPTS=checkwinsize:cmdhist:expand_aliases:extquote:force_fignore:hostcomplete:interactive_comments:login_shell:progcomp:promptvars:sourcepath
BASH_ALIASES=()
BASH_ARGC=()
BASH_ARGV=()
BASH_CMDS=()
BASH_LINENO=()
BASH_SOURCE=()
BASH_VERSINFO=([0]="4" [1]="1" [2]="2" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu")
BASH_VERSION='4.1.2(1)-release'

[root@pandaVM script]# set +o history # To disable the history storing.
+o disables the given options.

[root@pandaVM script]# set -o history
-o enables the history


2.设置变量参数及位置
[root@pandaVM script]# echo $1 , $2
,
[root@pandaVM script]# set `free | head -2 | tail -1`
[root@pandaVM script]# echo $1 , $2
Mem: , 1012352
[root@pandaVM script]# free | head -2 | tail -1
Mem:       1012352     936836      75516          0     144684     527492



【参考引用】
http://www.thegeekstuff.com/2010/08/bash-shell-builtin-commands/
分享到:
评论

相关推荐

    2009 达内Unix学习笔记

    集合了 所有的 Unix命令大全 ...telnet 192.168.0.23 自己帐号 sd08077-you0 ftp工具 192.168.0.202 tools-toolss ... 各个 shell 可互相切换 ksh:$ sh:$ csh:guangzhou% bash:bash-3.00$ ... 命令和参数之间必需用空格隔...

    google repo工具

    The command is evaluated through /bin/sh and any arguments after it are passed through as shell positional parameters. -p: show project headers before output of the specified command. This is ...

    kettle变量参数设置

    变量(Variables)通常被称为环境变量或全局变量。它们在整个转换过程中保持一致的值,即使是在不同的转换任务中也是如此。变量在Kettle中可以用于多种用途,例如指定文件路径、SMTP服务器配置等。变量的定义方式有...

    中国人民银行--WebLogic Server配置

    #ADMIN_URL as positional parameters, sets the SERVER_NAME variable, then #starts the server. # #Other variables that startWLS takes are: # #WLS_USER - clear text user for server startup #WLS_PW - ...

    ZendFramework中文文档

    11.1. 输出变量的值 (Dumping Variables) 12. Zend_Exception 12.1. 使用“异常” 13. Zend_Feed 13.1. 介绍 13.2. 导入Feeds 13.2.1. 定制 feeds 13.2.1.1. 导入定制的数组 13.2.1.2. 导入定制的数据源 ...

Global site tag (gtag.js) - Google Analytics