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.
$lineという変数に格納されているこれをトリミングしようとしています。
[2012-06-18 10:37:09,026 (there is a lot of text after this, i just cut it out)
私はシェルスクリプトに不慣れで、これは私が持っているコードです
errortime= $line | cut -c2-10;
エラーが発生します。変数$lineから日付を取得するための正しいコードは何ですか。
あなたが欲しかった:
errortime=`echo $line | cut -c2-20`
代わりは?
編集:kshを使用している場合、その行は次のようになります。
errortime=$(echo $line | cut -c2-20)