首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

shell脚本读取配置文件,该怎么解决

2012-02-28 
shell脚本读取配置文件我现在有个配置文件config,里面内容为ID123IP192.168.3.154Nametest想写个shell

shell脚本读取配置文件
我现在有个配置文件config,里面内容为
ID=123
IP=192.168.3.154
Name=test
想写个shell脚本,把这几个变量的值给读出来
高手指点下

[解决办法]

Assembly code
[root@RHEL6A shcode]# more config ID=123IP=192.168.3.154Name=test[root@RHEL6A shcode]# echo $ID0[root@RHEL6A shcode]# more sh13.sh #!/bin/bashsource configecho $IDecho $IPecho Name[root@RHEL6A shcode]# ./sh13.sh 123192.168.3.154Name 

热点排行