首页 > 代码库 > shell tips

shell tips

1、shopt 命令可以设置shell的可选参数

shopt [-psu] [optname...]

-s  开启某个选项

-u  关闭某个选项

-p  列出所有可设置的选项

其中开启extglob选项,shell将启用模式匹配

 

2、eval能够执行字符串中的命令,例子如下:

monster@monster-Z:~/TEST/sh$ command="pwd"
monster@monster-Z:~/TEST/sh$ eval $command
/home/monster/TEST/sh

  

3、unset用于删除变量

 

4、IFS变量为分隔符设置,默认为‘ ‘。当然,我们可以对它进行修改,如下所示:

monster@monster-Z:~$ NAME=(A B C D)
monster@monster-Z:~$ echo "${NAME[*]}"
A B C D
monster@monster-Z:~$ IFS=‘|‘
monster@monster-Z:~$ echo "${NAME[*]}"
A|B|C|D

  

shell tips