diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-10-29 21:35:29 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-10-29 21:35:29 +0100 |
commit | c9070a5ba14feff3daf4db0fc076873cbd878f44 (patch) | |
tree | 52dd5da5fd8b7b61e85e5e684076669064357e57 | |
parent | bd02d95a7218a624d33c72a96b5a361805e70540 (diff) |
-of: show delimiter between route_pre and route_post
-rwxr-xr-x | bin/db-iris | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/db-iris b/bin/db-iris index 59ba4ba..2aa94b7 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -306,7 +306,10 @@ sub display_result { } if ( $edata{fullroute} ) { - print "\n" . join( "\n", $d->route ) . "\n\n"; + print "\n" + . join( "\n", $d->route_pre ) + . "\n - - - -\n" + . join( "\n", $d->route_post ) . "\n\n"; } } |