mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-23 15:45:53 +00:00
14 lines
165 B
Awk
14 lines
165 B
Awk
|
#! /usr/bin/awk -f
|
||
|
|
||
|
# - Input:
|
||
|
# Options=foo
|
||
|
#
|
||
|
# - Output:
|
||
|
# ResetOldOptions=true
|
||
|
|
||
|
BEGIN { FS = "=" }
|
||
|
|
||
|
$1 == "Options" && $2 != "" {
|
||
|
print "ResetOldOptions=true"
|
||
|
}
|