mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 09:57:41 +00:00
6 lines
92 B
Sed
6 lines
92 B
Sed
|
# Replace "0 minutes" with "unlimited"
|
||
|
/^\.Li 0$/ {
|
||
|
N
|
||
|
s/^\.Li 0\nminutes\.$/unlimited./
|
||
|
}
|