ターミナルを開き、次を入力します。
$ sudo su
$ cd /System/Library/CoreServices/SystemUIServer.app/Contents/Resources/English.lproj
$ plutil -convert xml1 ScreenCapture.strings
$ nano ScreenCapture.strings
変化する
<key>%@ %@ at %@</key>
<string>%@ %@ at %@</string>
<key>.</key>
<string>.</string>
<key>Screen Shot</key>
<string>Screen Shot</string>
に
<key>%@ %@ at %@</key>
<string>%@_%@_%@</string>
<key>.</key>
<string></string>
<key>Screen Shot</key>
<string>screenshot</string>
それから
Control+ Oはファイルを書き込み、Control+ Xはnanoを終了します
$ plutil -convert binary1 ScreenCapture.strings
$ killall SystemUIServer
ここでもう1つ注意すべきことは、AM / PMを取り除くには、[システム環境設定]> [言語とテキスト]> [形式(24時間形式)]で変更する必要があることです。タイムスタンプは、設定方法に従って表示されます。この設定を変更すると、すべてのファイル名がこの形式を使用することに注意してください。
〜仕組みを教えてください。