Linux コマンドの実行結果を1行にまとめる

Linux コマンドの実行結果を1行にまとめる

Linuxで、コマンドの実行結果を1行にまとめる手順を記述してます。

環境

  • OS Rocky Linux release 8.4 (Green Obsidian)
  • shell: /bin/bash

コマンドの実行結果を1行にまとめる

コマンドの実行結果を1行にまとめるには、パイプ「|」で「xargs」を使用します。

実際に、「ls -l」で実行してみます。

ls -l | xargs

<出力結果>
合計 181480 drwxrwxr-x 2 testuser testuser 6 9月 13 09:20 10} drwxr-xr-x 2 root root 20 7月 19 16:21 backup drwxrwxr-x 3 testuser testuser 18 9月 10 11:05 bar drwxrwxr-x 3 testuser testuser 16 9月 13 09:24 d1 -rw-rw-r-- 1 testuser testuser 12737304 5月 10 21:05 docker-compose-Linux-x86_64 -rw-rw-r-- 1 testuser testuser 94 5月 10 21:05 docker-compose-Linux-x86_64.sha256 -rw-rw-r-- 1 testuser testuser 94 5月 10 21:05 docker-compose-Linux-x86_64.sha256.1 -rw-r--r-- 1 root root 3473 7月 19 15:48 dump.spl drwxrwxr-x 2 testuser testuser 6 9月 13 09:20 d{seq -rw-rw-r--. 1 testuser testuser 129021323 4月 2 06:18 go1.16.3.linux-amd64.tar.gz -rw-rw-r--. 1 testuser testuser 83 6月 25 19:55 hello.go -rw-rw-r--. 1 testuser testuser 17 6月 26 15:47 hello.rb -rw-rw-r--. 1 testuser testuser 28 6月 25 18:14 hello.ts drwxrwxr-x 3 testuser testuser 62 9月 10 12:43 hoge drwxrwxr-x 3 testuser testuser 23 9月 10 11:06 hogehoge -rw-rw-r-- 1 testuser testuser 87335 9月 10 11:49 index.html -rwxr-xr-x. 1 testuser testuser 30053267 5月 4 23:20 ngrok -rw-rw-r--. 1 testuser testuser 13832437 6月 25 17:26 ngrok-stable-linux-amd64.zip drwxrwxr-x 4 testuser testuser 29 7月 15 13:07 node_modules drwxrwxr-x 10 testuser testuser 239 8月 25 13:03 nuxtapp -rw-rw-r-- 1 testuser testuser 47585 7月 15 13:07 package-lock.json -rw-rw-r-- 1 testuser testuser 293 7月 15 13:07 package.json drwxrwxr-x 4 testuser testuser 34 7月 21 09:42 postgres drwxr-xr-x 2 root root 94 7月 19 18:34 postgres2 drwxrwxr-x 6 testuser testuser 135 8月 25 09:36 react-app drwxrwxr-x 3 testuser testuser 23 8月 31 12:39 react-app-back drwxrwxr-x 3 testuser testuser 23 8月 31 12:26 react-app-backup drwxrwxr-x 3 testuser testuser 51 7月 22 10:22 saml drwxrwxr-x 3 testuser testuser 16 9月 13 09:44 sample drwxrwxr-x 2 testuser testuser 6 8月 5 15:13 spl drwxrwxr-x 3 testuser testuser 46 8月 5 15:20 sql drwxrwxr-x 2 testuser testuser 22 8月 27 11:44 tesedir -rw------- 1 testuser testuser 484 7月 14 20:03 test -rw-r--r-- 1 testuser testuser 112 7月 14 20:03 test.pub drwxrwxr-x 2 testuser testuser 83 7月 15 17:53 test2 drwxrwxr-x 3 testuser testuser 25 8月 24 14:45 testapp drwxrwxr-x. 3 testuser testuser 73 8月 28 12:47 testdir -rw-rw-r-- 1 testuser testuser 1420 8月 31 12:53 typescript drwxrwxr-x 2 testuser testuser 6 7月 15 13:06 vue3 drwxrwxr-x 6 testuser testuser 180 7月 15 13:23 vueapp drwxr-xr-x. 2 testuser testuser 6 6月 24 13:24 ダウンロード drwxr-xr-x. 2 testuser testuser 6 6月 24 13:24 テンプレート drwxr-xr-x. 2 testuser testuser 6 6月 24 13:24 デスクトップ drwxr-xr-x. 2 testuser testuser 6 6月 24 13:24 ドキュメント drwxr-xr-x. 2 testuser testuser 6 6月 24 13:24 ビデオ drwxr-xr-x. 2 testuser testuser 6 6月 24 13:24 音楽 drwxr-xr-x. 2 testuser testuser 6 6月 24 13:24 画像 drwxr-xr-x. 2 testuser testuser 6 6月 24 13:24 公開

実行結果が1行で表示されていることが確認できます。