1 2 3 | /^@/ { last_line=$0; line_to_print=true } /^[^@]/ { if ( line_to_print == true ) print last_line; print $0; line_to_print=false } END { if ( line_to_print == true ) print last_line } |
L15ALyB7IGxhc3RfbGluZT0kMDsgbGluZV90b19wcmludD10cnVlIH0KL15bXkBdLyB7IGlmICggbGluZV90b19wcmludCA9PSB0cnVlICkgcHJpbnQgbGFzdF9saW5lOyBwcmludCAkMDsgbGluZV90b19wcmludD1mYWxzZSB9CkVORCB7IGlmICggbGluZV90b19wcmludCA9PSB0cnVlICkgcHJpbnQgbGFzdF9saW5lIH0=
-
upload with new input
-
result: Success time: 0.01s memory: 4276 kB returned value: 0
abc @abc @def 333 @asd @poi @789
abc @def 333 @789


