我已经在 Centos 6.4 中安装了适用于 linux 的 PCoIP Teradici PCoIP 解决方案。我想获得 HostCard 的 macAdress,当我运行pcoip_agent -info
它时,它会使用命令行给出正确的输出。我想做这个 cron 工作,为此我编写了 bash 脚本
#!/bin/bash
hostcardMacAddress=$(pcoip_agent --info|grep -F 'PCoIP Host card MAC:'|awk '{print $5}' > hostcardMacAddress.txt)
cat hostcardMacAddress.txt
之后,我将此脚本设为 cron 作业,但它提供了空的 macAddress。
请帮助我。谢谢。