Skip to content

Commit 48f215a

Browse files
authored
Merge pull request #21 from SomeoneElseOSM/remove_rogue_egrep_space
Remove trailing space from opl node search egrep examples
2 parents c1fce17 + 32beee2 commit 48f215a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_opl_file_format/05_examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ Count how many objects were created in each hour of the day:
3737

3838
Find all closed ways:
3939

40-
egrep '^w' data.osm.opl | egrep 'N(n[0-9]+),.*\1 '
40+
egrep '^w' data.osm.opl | egrep 'N(n[0-9]+),.*\1'
4141

4242
Find all ways tagged with `area=yes` that are not closed:
4343

44-
egrep '^w' data.osm.opl | egrep 'area=yes' | egrep -v 'N(n[0-9]+),.*\1 '
44+
egrep '^w' data.osm.opl | egrep 'area=yes' | egrep -v 'N(n[0-9]+),.*\1'
4545

4646
Find all users who have created post boxes:
4747

0 commit comments

Comments
 (0)