nul-point

完全に自分用の備忘録です。

shell

systemctlコマンドがtimeoutになって使用できないときのTips

事象(一例) 他オプション等でもTimeoutになったときには有効 # systemctl list-unit-files Failed to list unit files: Connection timed out 参考URL https://gryzli.info/2016/06/18/systemd-systemctl-list-unit-files-timeouts/ Script #!/bin/bash find…

findで特定の日付でファイルを絞る

-newerXYで絞る # find . -type f -newermt 2013-5-16 -ls 133887 68 -rwxr-xr-x 1 root root 68616 May 16 2013 ./gzip 140242 52 -rwxr-xr-x 1 root root 52656 May 16 2013 ./touch 133871 16 -rwxr-xr-x 1 root root 12304 Sep 17 16:38 ./tracepath6 13…