LINUX.ORG.RU

История изменений

Исправление zagatov_lev, (текущая версия) :

Спасибо, вот что сделал:

echo -n 'Enter beginning: '; read bgn; echo -n 'Enter end: '; read end; echo 'There is a list of packages:'; yay -Ssq "$bgn" "$end\$";echo -n 'Press Enter to continue or ^C to quit: '; read tmp; for i in $(yay -Ssq "$bgn" "$end\$"); do yay -S $i; done

Результат:

[user@lev ~]$ echo -n 'Enter beginning: '; read bgn; echo -n 'Enter end: '; read end; echo 'There is a list of packages:'; yay -Ssq "$bgn" "$end\$";echo -n 'Press Enter to continue or ^C to quit: '; read tmp; for i in $(yay -Ssq "$bgn" "$end\$"); do yay -S $i; done
Enter beginning: xfce
Enter end: plugin
There is a list of packages:
xfce4-whiskermenu-plugin
xfce4-xkb-plugin
xfce4-weather-plugin
xfce4-wavelan-plugin
xfce4-verve-plugin
xfce4-timer-plugin
xfce4-time-out-plugin
xfce4-systemload-plugin
xfce4-smartbookmark-plugin
xfce4-sensors-plugin
xfce4-pulseaudio-plugin
xfce4-notes-plugin
xfce4-netload-plugin
xfce4-mpc-plugin
xfce4-mount-plugin
xfce4-mailwatch-plugin
xfce4-genmon-plugin
xfce4-fsguard-plugin
xfce4-eyes-plugin
xfce4-diskperf-plugin
xfce4-datetime-plugin
xfce4-cpugraph-plugin
xfce4-cpufreq-plugin
xfce4-clipman-plugin
xfce4-battery-plugin
thunar-media-tags-plugin
thunar-archive-plugin
Press Enter to continue or ^C to quit: ^C
[user@lev ~]$ 

Исходная версия zagatov_lev, :

Спасибо, вот что сделал:

read bgn; read end; echo 'There is a list of packages'; yay -Ssq "$bgn" "$end\$";echo -n 'Press Enter to continue or C-c to quit'; read tmp; for i in $(yay -Ssq "$bgn" "$end\$"); do yay -S $i; done