mirror of https://github.com/cheat/cheat.git
20151102 - Added 3 more cheats into the new apt cheatsheet
This commit is contained in:
parent
a519ea163e
commit
22eb1f2df4
|
@ -1,5 +1,11 @@
|
||||||
# Desc: Allows to update the operating system
|
# Desc: Allows to update the operating system
|
||||||
|
|
||||||
|
# To search a package:
|
||||||
|
apt search package
|
||||||
|
|
||||||
|
# To show package informations:
|
||||||
|
apt show package
|
||||||
|
|
||||||
# To fetch package list:
|
# To fetch package list:
|
||||||
apt update
|
apt update
|
||||||
|
|
||||||
|
@ -14,3 +20,6 @@ apt update && apt dist-upgrade
|
||||||
|
|
||||||
# To install a new package(s):
|
# To install a new package(s):
|
||||||
apt install package(s)
|
apt install package(s)
|
||||||
|
|
||||||
|
# To uninstall package(s)
|
||||||
|
apt remove package(s)
|
||||||
|
|
Loading…
Reference in New Issue