История изменений
Исправление dissident, (текущая версия) :
sudo -k
[skip]
Please note that this command will not terminate the session if
you have used the “sudo -s” during a terminal session.
Это не работает, по крайней мере в терминале (может в скрипте работает). Зато вероятно заработает так:
sudo -s
[sudo] password for user:
<быдлоскрипт>
sudo_s_pid=`pgrep sudo`
kill -9 $sudo_s_pid
И 10 линий баша заменяют yay…
Исправление dissident, :
sudo -k
[skip]
Please note that this command will not terminate the session if
you have used the “sudo -s” during a terminal session.
Это не работает, по крайней мере в терминале (может в скрипте работает). Зато вероятно заработает так:
sudo -s
[sudo] password for user:
<быдлоскрипт>
sudo_s_pid=`pgrep sudo`
kill -9 `sudo_s_pid`
И 10 линий баша заменяют yay…
Исправление dissident, :
sudo -k
[skip]
Please note that this command will not terminate the session if
you have used the “sudo -s” during a terminal session.
Это не работает, по крайней мере в терминале (может в скрипте работает). Зато вероятно заработает так:
sudo -s
[sudo] password for user:
<быдлоскрипт>
sudo_s_pid=`pgrep sudo`
kill -9 `sudo_s_pid`
```bash
И 10 линий баша заменяют yay...
Исходная версия dissident, :
sudo -k
[skip]
Please note that this command will not terminate the session if
you have used the “sudo -s” during a terminal session.
Это не работает, по крайней мере в терминале (может в скрипте работает). Зато вероятно заработает так:
sudo -s
[sudo] password for user:
<быдлоскрипт>
sudo_s_pid=pgrep sudo
kill -9 sudo_s_pid
И 10 линий баша заменяют yay…