応答形式をキーと値の文字列として指定する

応答形式をキーと値の文字列として指定する

次のコマンドを呼び出すとしましょう。

pwd && ls -l 

次の必須形式で応答を受けたいと思います。

[CurrentDirectory=[here_result_of_pwd]] [AllDirectoriesInCurrentDirectory= 
[here_result_of ls -l command]]

この結果を得るためにUnixで必要なフォーマットを適用する他の方法はありますか?

ベストアンサー1

この試み、

echo -e "[CurrentDirectory=[`pwd`]] [AllDirectoriesInCurrentDirectory=[`ls -l | grep -v '^total'`]]"

出力:

 [CurrentDirectory=[/home/test]] [AllDirectoriesInCurrentDirectory=[-rw-r--r-- 1 root root    0 Jul 17 16:50 2501254200*.nc
-rw-r--r-- 1 root root  118 Jul 17 12:12 ghf
-rw-r--r-- 1 root root  179 Aug  1 16:35 jjj
-rw-r--r-- 1 root root  716 Aug  2 17:15 kk
-rw-r--r-- 1 root root 2527 Jul 17 15:10 test
-rw-r--r-- 1 root root  216 Jul 17 16:28 ttt]]

おすすめ記事