mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 10:15:54 +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"
|
|
}
|