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.
ex のシェル スクリプトでコマンドを実行したいのls -alですが、5 行目の 3 番目の単語を抽出する必要があります。誰でも助けることができますか?
ls -al
私が現在持っているものは次のとおりです。
str = $(ls -al foo | cut -d" " -f3)
これは 3 番目のフィールドにすべての単語を格納していますが、5 行目から単語を取得できません。
特定の行、またはより最適化されたソリューションを取得する方法を教えてください。
コマンドを次のように変更するだけです。
ls -al |head -5|tail -1|cut -d" " -f3