*: normalize colons (#7913)

This commit is contained in:
Seth Falco
2022-03-27 07:25:15 +02:00
committed by GitHub
parent f63fedd585
commit 27ff55fc2e
88 changed files with 144 additions and 144 deletions

View File

@@ -27,10 +27,10 @@
`awk '{if ($1 == "foo") print "Exact match foo"; else if ($1 ~ "bar") print "Partial match bar"; else print "Baz"}' {{filename}}`
- Print all lines where the 10th column value equals the specified value :
- Print all lines where the 10th column value equals the specified value:
`awk '($10 == value)'`
- Print all the lines which the 10th column value is between a min and a max :
- Print all the lines which the 10th column value is between a min and a max:
`awk '($10 >= min_value && $10 <= max_value)'`

View File

@@ -20,6 +20,6 @@
`updog --password {{password}}`
- Enable transport encryption via SSL :
- Enable transport encryption via SSL:
`updog --ssl`