From 6f02568c84834d691f535025f252b6b1be549915 Mon Sep 17 00:00:00 2001 From: cladmi <gaetan.harter@fu-berlin.de> Date: Mon, 15 Oct 2018 16:51:30 +0200 Subject: [PATCH] openocd.sh: split 'sed' commands on different lines https://stackoverflow.com/a/24276470 Labels and branching commands (e.g., b) must be followed by an actual newline or continuation via a separate -e option. --- dist/tools/openocd/openocd.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dist/tools/openocd/openocd.sh b/dist/tools/openocd/openocd.sh index ba50e5b1cd..3aaadfe370 100755 --- a/dist/tools/openocd/openocd.sh +++ b/dist/tools/openocd/openocd.sh @@ -170,7 +170,14 @@ _split_banks() { # name nrf51 base 0 size 0 bus_width 1 chip_width 1 # name nrf51 base 268439552 size 0 bus_width 1 chip_width 1 - sed -n '/^{.*}$/ {s/\} /\}\n/g;s/[{}]//g;p}' + # The following command needs specific osx handling (non gnu): + # * Same commands for a pattern should be on different lines + sed -n ' + /^{.*}$/ { + s/\} /\}\n/g + s/[{}]//g + p + }' } # Outputs bank info on different lines without the '{}' -- GitLab