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.
Putty を使用して Windows マシンで df -kh コマンドを実行しています。結果を Microsoft Excel に保存できるように、適切な形式で出力する必要があります。助けてください
幸運にもどのファイル システムにもスペースがない場合:
df -kh | tr -s " " "\t"
Excel に簡単にコピーして貼り付けることができるように、すべての連続したスペースを 1 つのタブに変換します。