0

我正在尝试使用以下命令更改 OS X 机器的计算机信息字段:

    system_profiler SPAirPortDataType | awk '/MAC Address:/{print $NF}' | /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -computerinfo -set1 -1

我遇到了问题,并且知道上述内容不正确。有谁知道更好的方法?

4

2 回答 2

1

没关系,我想通了:

 sudo defaults write /Library/Preferences/com.apple.RemoteDesktop \Text1 $(system_profiler SPAirPortDataType | awk '/MAC Address:/{print $NF}')

使用后重启:

/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -restart -agent -console
于 2012-06-08T18:21:03.930 回答
0

对于那些感兴趣的人,这是另一种方式:

/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -computerinfo -set1 -1 $(system_profiler SPAirPortDataType | awk '/MAC Address:/{print $NF}')
于 2012-06-08T19:40:12.723 回答