Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Linux の「date」コマンドから分の値を抽出する必要があります。オンラインガイドは本当にわかりにくいです。助けていただけますか?
あなたが望むように聞こえます:
date +%M
これにより、分の値のみが出力され、次のように変数に割り当てることができます。
dat=`date +%M` echo $dat
あなたが試すことができます
直接入手するため。
またはこれ
date | awk '{print $4}' | cut -d ":" -f 2
間接的に取得するため