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 に答える