Lookup APT packages: Difference between revisions

From MK Wiki EN
Jump to navigation Jump to search
m (1 revision imported)
 
m (Translated prompt from german to english)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
  while /bin/true; do echo; echo "Neue Eingabe:"; read line; echo; apt-cache search $line | grep $line; done
  while /bin/true; do echo; echo "Package to find:"; read line; echo; apt-cache search $line | grep $line; done
 
[[Category:Linux]]

Latest revision as of 06:04, 2 September 2019

while /bin/true; do echo; echo "Package to find:"; read line; echo; apt-cache search $line | grep $line; done