Voici comment émuler grep -B1
avec sed
:
sed '$!N;/pattern/P;D' infile
C'est très similaire à celui ici . Tout comme l'autre, il lit dans la N
ligne ext mais cette fois, il P
imprime jusqu'à la première ligne \n
électronique si l'espace de motif correspond , puis, tout comme l'autre, se D
termine jusqu'à la première ligne \n
électronique et redémarre le cycle. Donc, avec votre exemple d'entrée:
sed '$!N;/&/P;D' infile
les sorties:
aaaaaaaaa
bbbbbbbbb &
ccccccccc &
eeeeeeeee
fffffffff &
ggggggggg &
Encore une fois, pour voir comment cela fonctionne, ajoutez l
avant et après le N
pour regarder l'espace modèle:
sed 'l;$!N;l;/&/P;D' infile
par exemple avec un exemple de fichier:
zzzz &
aaaa
bbbb
cccc &
dddd &
hhhh
eeee
ffff &
gggg &
ce sont les commandes qui sed
s'exécutent et la sortie correspondante:
sortie cmd cmd
l zzzz &$ N # read in the next line
l zzzz &\naaaa$ # pattern space matches so print up to \n
P zzzz & D # delete up to \n
l aaaa$ N # read in the next line
l aaaa\nbbbb$ D # delete up to \n (no match so no P)
l bbbb$ N # read in the next line
l bbbb\ncccc &$ # pattern space matches so print up to \n
P bbbb D # delete up to \n
l cccc &$ N # read in the next line
l cccc &\ndddd &$ # pattern space matches so print up to \n
P cccc & D # delete up to \n
l dddd &$ N # read in the next line
l dddd &\nhhhh$ # pattern space matches so print up to \n
P dddd & D # delete up to \n
l hhhh$ N # read in the next line
l hhhh\neeee$ D # delete up to \n (no match so no P)
l eeee$ N # read in the next line
l eeee\nffff &$ # pattern space matches so print up to \n
P eeee D # delete up to \n
l ffff &$ N # read in the next line
l ffff &\ngggg &$ # pattern space matches so print up to \n
P ffff & D # delete up to \n
l gggg &$ # last line so no N
l gggg &$ # pattern space matches so print up to \n
P gggg & D # delete up to \n