Linux SHELL读取配置文件中的变量
1.配置文件内容(a.cfg):
#!/bin/bash FTP_IP=192.168.1.201 FTP_USER=test_user FTP_PASS=123456 SRC_DIR=/ DIST_DIR=~/data # 文件日期(系统日期减一天) CD=`date +"%Y%m%d" -d'-1 day'`
2.shell脚本
#!/bin/bash source a.cfg ftp -n<<! open $FTP_IP user $FTP_USER $FTP_PASS binary cd /home/data lcd $DIST_DIR prompt mget *.dat close bye !
注意:文件格式必须是unix文件格式
参考地址:http://www.myexception.cn/linux-unix/292000.html
相关推荐
tianhuak 2020-11-24
以梦为马不负韶华 2020-10-20
彼岸随笔 2020-10-20
yutou0 2020-10-17
applecarelte 2020-10-16
ourtimes 2020-10-16
firefaith 2020-10-30
libao 2020-09-16
Yyqingmofeige 2020-08-18
xiaoyuerp 2020-08-17
以梦为马不负韶华 2020-08-16
huha 2020-10-16
laisean 2020-11-11
大牛牛 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 2020-10-20
JohnYork 2020-10-16
Julyth 2020-10-16
laisean 2020-09-27
flycappuccino 2020-09-27
liguojia 2020-09-27
wangzhaotongalex 2020-09-22
流年浅滩 2020-10-23
liujianhua 2020-10-22
woaimeinuo 2020-10-21
tufeiax 2020-09-03
laisean 2020-09-01
vvu 2020-09-16