Arch Linuxのパッケージマネージャー、pacman
は、各結果が 2 行にわたる検索結果を出力します。
~ % pacman -Ss cowsay
extra/cowsay 3.04-2
Configurable talking cow (and a few other creatures)
community/ponysay 3.0.3-4
cowsay reimplemention for ponies
この出力を grep する方法はいくつかありますgrep -C 1
が ( など)、呼び出しをラップして出力を にパイプする方法を好みますpaste - - | column -s $'\t' -t
。これにより、各検索結果が独自の行に残ります。
~ % pacman -Ss cowsay
community/ponysay 3.0.3-4 (1.3 MiB 10.7 MiB) cowsay reimplemention for ponies
extra/cowsay 3.04-2 (19.5 KiB 38.2 KiB) Configurable talking cow (and a few other creatures)
ここまでは順調です。しかし、私はまた、yay
は、本質的には のラッパーでありpacman
、パッケージを管理するための機能が追加されています。Arch ユーザー リポジトリ(AUR)。yay
他のオプションを指定せずに検索語を渡すだけで起動される対話型の検索/インストール コマンドが含まれています。
~ % yay cowsay
15 aur/ponysay-free 3.0.2-1 (+1 0.00)
Awesome cowsay reimplemention with ponies for ponies. Only free ponies edition
[...]
4 aur/xcowsay 1.5.1-1 (+17 0.38)
a program based on cowsay that displays a cute cow and message on your desktop
3 aur/muccadoro 1.0.1-1 (+1 0.79)
Pomodoro timer using figlet, cowsay, and optionally lolcat
2 community/ponysay 3.0.3-4 (1.3 MiB 10.7 MiB)
cowsay reimplemention for ponies
1 extra/cowsay 3.04-2 (19.5 KiB 38.2 KiB)
Configurable talking cow (and a few other creatures)
==> Packages to install (eg: 1 2 3, 1-3 or ^4)
==> 1
resolving dependencies...
looking for conflicting packages...
Package (1) New Version Net Change Download Size
extra/cowsay 3.04-2 0.04 MiB 0.02 MiB
Total Download Size: 0.02 MiB
Total Installed Size: 0.04 MiB
:: Proceed with installation? [Y/n] Y
:: Retrieving packages...
cowsay-3.04-2-any 19.5 KiB 49.5 KiB/s 00:00 [#######################################################] 100%
(1/1) checking keys in keyring [#######################################################] 100%
(1/1) checking package integrity
[...]
統一性を保つために、この機能にも検索結果の修正を適用したいと考えていましたが、インタラクティブ性、および改行のない行 ( ==>
) があるという事実から、いくつかの異なるアプローチが必要になります。
検索結果部分だけを変更し、スクリプトの残りの部分を直接渡す必要があります。
paste
私は/に似たcolumn
、ただしキルスイッチ付きの小さな Perl スクリプトを書きました:
#!/usr/bin/perl
$thru = 0;
while (<>) {
if ( $thru == 1 || m/Packages to install / ) {
$thru = 1;
} else {
chomp unless (m/^ /);
s/^\s+/\t/;
}
print;
}
しかし、出力をパイプすると、進行状況バーとプロンプトの前のテキストが失われます。
差分は次のとおりです:
--- correctnot.txt 2021-10-29 15:09:43.645632751 -0500
+++ correct.txt 2021-10-29 15:09:43.655632810 -0500
@@ -1,22 +1,22 @@
==> Packages to install (eg: 1 2 3, 1-3 or ^4)
-1
-==> resolving dependencies...
+==> 1
+resolving dependencies...
looking for conflicting packages...
-:: Proceed with installation? [Y/n]
+
Package (1) New Version Net Change
extra/cowsay 3.04-2 0.04 MiB
Total Installed Size: 0.04 MiB
-Y
-checking keyring...
-checking package integrity...
-loading package files...
-checking for file conflicts...
-checking available disk space...
+:: Proceed with installation? [Y/n] Y
+(1/1) checking keys in keyring [#######################################################] 100%
+(1/1) checking package integrity [#######################################################] 100%
+(1/1) loading package files [#######################################################] 100%
+(1/1) checking for file conflicts [#######################################################] 100%
+(1/1) checking available disk space [#######################################################] 100%
:: Processing package changes...
-installing cowsay...
+(1/1) installing cowsay [#######################################################] 100%
:: Running post-transaction hooks...
(1/3) Arming ConditionNeedsUpdate...
(2/3) Refreshing PackageKit...
別の試みでは、最初のプロンプトの前にすべてを再作成し、その回答を 2 回目の呼び出しに渡しました。
echo q |
/usr/bin/yay "$@" |
perl -pe 'if ( m/Packages to install / ) { print; s/Packages to install.*//; chomp; print; exit; } chomp unless (m/^ /); s/^\s+/\t/'
read answer
echo "$answer" | exec /usr/bin/yay "$@"
出力:
15 aur/ponysay-free 3.0.2-1 (+1 0.00) Awesome cowsay reimplemention with ponies for ponies. Only free ponies edition
[...]
4 aur/xcowsay 1.5.1-1 (+17 0.38) a program based on cowsay that displays a cute cow and message on your desktop
3 aur/muccadoro 1.0.1-1 (+1 0.79) Pomodoro timer using figlet, cowsay, and optionally lolcat
2 community/ponysay 3.0.3-4 (1.3 MiB 10.7 MiB) cowsay reimplemention for ponies
1 extra/cowsay 3.04-2 (19.5 KiB 38.2 KiB) Configurable talking cow (and a few other creatures)
==> Packages to install (eg: 1 2 3, 1-3 or ^4)
==> 1
15 aur/ponysay-free 3.0.2-1 (+1 0.00)
Awesome cowsay reimplemention with ponies for ponies. Only free ponies edition
[...]
4 aur/xcowsay 1.5.1-1 (+17 0.38)
a program based on cowsay that displays a cute cow and message on your desktop
3 aur/muccadoro 1.0.1-1 (+1 0.79)
Pomodoro timer using figlet, cowsay, and optionally lolcat
2 community/ponysay 3.0.3-4 (1.3 MiB 10.7 MiB)
cowsay reimplemention for ponies
1 extra/cowsay 3.04-2 (19.5 KiB 38.2 KiB)
Configurable talking cow (and a few other creatures)
==> Packages to install (eg: 1 2 3, 1-3 or ^4)
==> resolving dependencies...
looking for conflicting packages...
Package (1) New Version Net Change
extra/cowsay 3.04-2 0.04 MiB
Total Installed Size: 0.04 MiB
:: Proceed with installation? [Y/n] -> exit status 1
最初はうまくいきましたが、結果が 2 回出力され、コマンドを 2 回実行する必要がありました。うまくいきませんでした。
補足: ここで言及しておくべきなのは、投資収益率は非常に低いということです。そもそも、インタラクティブ リストを grep する必要があるでしょうか? この時点で、コピーからフォークしyay
て削除したほうがよいでしょう\n
(やったしかし、私はまだ興味があります。このような対話型プログラムの出力を変更する簡単な方法はありますか?