博客
关于我
shell取值分割后的每个字段赋值给变量
阅读量:88 次
发布时间:2019-02-25

本文共 462 字,大约阅读时间需要 1 分钟。

????????DNS????ttl?IP????????????????

??????????

???????bash?????????????????????????

#!/bin/bashdeclare -a arra="www.baidu.com A 300 192.168.1.1"for i in $(echo "$a" | awk '{print $3,$4}') do    arr[index]=$i    ((index++))doneecho "ttl: ${arr[0]}"echo "ip address: ${arr[1]}"

????????????????

??????eval??

??????eval??????????????????????????

#!/bin/bashb=""c=""eval "$(echo "$a" | awk '{ printf("b=%s;c=%s",$3,$4)}')"echo "$b"echo "$c"

????????????ttl?IP?????

转载地址:http://tca.baihongyu.com/

你可能感兴趣的文章
SparkSql的元数据
查看>>
PAT (Basic Level) Practice 乙级1051-1055
查看>>
PAT (Basic Level) Practise - 写出这个数
查看>>
PAT 1027 Colors in Mars
查看>>
PAT 1127 ZigZagging on a Tree[难]
查看>>
PAT 2-07. 素因子分解(20)
查看>>
SparkSQL学习03-数据读取与存储
查看>>
PAT L2-012. 关于堆的判断
查看>>
PAT Spell It Right [非常简单]
查看>>
PAT-1044. Shopping in Mars (25)
查看>>
PAT-乙级-1040 有几个PAT
查看>>
Spring组件扫描配置
查看>>
PAT1093 Count PAT's (25)(逻辑题)
查看>>
PATA1038题解(需复习)
查看>>
Patching Array
查看>>
Spring源码学习(二):Spring容器之prepareContext和BeanFactoryPostProcessor的介绍
查看>>
PatchMatchStereo可能会需要的Rectification
查看>>
Path does not chain with any of the trust anchors
查看>>
Path形状获取字符串型变量数据
查看>>
PAT甲级——1001 A+B Format (20分)
查看>>