在BASH中读取MAC地址作为变量,我应该使用十六进制,我需要分号吗?

时间:2011-03-23 22:01:21

标签: bash

我有一个BASH脚本,可以在家中使用一些网络实用程序。我想在一开始就阅读一些变量。对于输入airodump-ng的东西,可以将MAC地址作为arg,如:00:01:02:03:04:05,如何输入“读取”?

1 个答案:

答案 0 :(得分:1)

read -p "Enter the MAC Address: " mac
echo "You entered the MAC Address: $mac"