AWK 输出到 bash 数组
我试图将一个简单命令的内容放入 bash 数组中,但是遇到了一些麻烦。
df -h | awk '{ print $5" "$6 }'
给出我的系统上文件系统的使用百分比 输出如下所示:
1% /dev
1% /dev/shm
1% /var/run
0% /var/lock
22% /boot
22% /home
22% /home/steve
然后我想将每一行放入 bash 数组中 array=$(df -h| awk '{ print $5 $6 }')
但是,当我打印出数组时,我得到以下信息:
5%
/
1%
/dev
1%
/dev/shm
1%
/var/run
0%
/var/lock
22%
/boot
22%
/home
22%
/home/steve
Bash 正在基于空格而不是换行符形成数组,我该如何解决这个问题?
Im trying to put the contents of a simple command in to a bash array however im having a bit of trouble.
df -h | awk '{ print $5" "$6 }'
gives percentage used in the file systems on my system
output looks like this:
1% /dev
1% /dev/shm
1% /var/run
0% /var/lock
22% /boot
22% /home
22% /home/steve
I would then like to put each of these lines into a bash array
array=$(df -h| awk '{ print $5 $6 }')
However when I print out the array I get the following:
5%
/
1%
/dev
1%
/dev/shm
1%
/var/run
0%
/var/lock
22%
/boot
22%
/home
22%
/home/steve
Bash is forming the array based on white spaces and not line breaks how can i fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要重置 IFS 变量(用于数组的分隔符)。
You need to reset the IFS variable (the delimeter used for arrays).
您可以在 Bash 中执行此操作,无需 awk。
You could do this in Bash without awk.
你可以使用这个:
You may use this: