Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the all-in-one-seo-pack domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/yuki/argontown/wordpress/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wpforms-lite domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/yuki/argontown/wordpress/wp-includes/functions.php on line 6114

Notice: 関数 _load_textdomain_just_in_time が誤って呼び出されました。cocoon ドメインの翻訳の読み込みが早すぎました。これは通常、プラグインまたはテーマの一部のコードが早すぎるタイミングで実行されていることを示しています。翻訳は init アクション以降で読み込む必要があります。 詳しくは WordPress のデバッグをご覧ください。 (このメッセージはバージョン 6.7.0 で追加されました) in /home/yuki/argontown/wordpress/wp-includes/functions.php on line 6114
Linux - Argon Town Blog

Linux

How-to_手順系

rsync 大量のファイルをコピーしたい(Mac)

大量のファイルが入ったフォルダを別の場所へコピーしたいとき、普通にFinderからドラッグアンドドロップでコピーしようとすると、「コピーの準備中」が表示され延々と時間がかかることがあります。rsyncコマンドを使用してディレクトリを同期する...
How-to_手順系

フォルダ内のファイルの拡張子一覧を出力

フォルダ内のファイルの拡張子一覧を出力$ find . -type f | awk -F. '{if (NF>1) {print $NF}}'この方法では、find コマンドを使用して再帰的にフォルダ内のすべてのファイルを検索awk コマン...
How-to_手順系

フォルダ内のファイルのサイズ一覧を出力する(Mac)

フォルダの中にあるファイルのサイズを出力する手順です。今回はMacでの方法なので、コマンドラインツールとして、Terminalを使い、ディレクトリのファイル一覧を出力するlsコマンドを使って行っていきます。lsコマンドを使用してファイルのサ...