Lookup APT packages: Difference between revisions

From MK Wiki EN
Jump to navigation Jump to search
m (+Category)
m (Translated prompt from german to english)
 
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]]
[[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