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.
このコマンドから 3 行目を抽出する最良の方法を確認しようとしていますが、取得できないようです
awk 'BEGIN{while("service ipsec status" | getline x) print x}'
service ipsec status | awk 'NR==3'
使用sed:
sed
service ipsec status | sed '3!d'