shell第一天
Posted 你很棒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell第一天相关的知识,希望对你有一定的参考价值。
centos默认shell版本:bash
echo $SHELL
开头语言标识:#!/bin/bash
在执行bash脚本的时候,内核根据#!解释器来确定改用哪个程序解释这个脚本中的内容
脚本注释
在shell中,#开头的是注释;
shell脚本的执行
方式一:bash script-name或sh script-name (推荐使用) 方式二:./script-name (当前路径下执行脚本,必须要给执行权限) 方式三:source script-name 方式四:cat scritps-name|bash
调用脚本中的定义的变量:使用bash script-name的方式不行,只能使用source script-name才能调用脚本中的变量
[[email protected] scripts]# cat test.sh user=`whoami` [[email protected] scripts]# bash test.sh [[email protected] scripts]# echo $user [[email protected] scripts]# source test.sh [[email protected] scripts]# !echo echo $user root
脚本中调用系统环境变量库
. /etc/init.d/functions 或source /etc/init.d/functions
以上是关于shell第一天的主要内容,如果未能解决你的问题,请参考以下文章