- or download this
$ echo ' | | | SNDYN000036000 | Unloadable | The SKU is not valid for
+the | | | | | | vendor with vendor number | | | | | | 875323. | ' |
+perl -pe 's/\|//g;'
SNDYN000036000 Unloadable The SKU is not valid for the ven
+dor with vendor number 875323.
- or download this
$ echo ' | | | SNDYN000036000 | Unloadable | The SKU is not valid for
+the | | | | | | vendor with vendor number | | | | | | 875323. | ' |
+perl -pe 's/\|//g; s/\s+/ /g;'
SNDYN000036000 Unloadable The SKU is not valid for the vendor with ve
+ndor number 875323.
- or download this
$ echo '--------------------------------------------------------------
+----------------------
> | Vendor | Vendor | Sku Number | Status | Status Detail
+ |
...
> | | | | | vendor with vend
+or number |
> | | | | | 875323.
+ |' | perl -pe 's/\|//g; s/\s+/ /g;'
----------------------------------------------------------------------
+-------------- Vendor Vendor Sku Number Status Status Detail ID Nam
+e -------------------------------------------------------------------
+----------------- SNDYN000036000 Unloadable The SKU is not valid for
+ the vendor with vendor number 875323.
- or download this
$ echo '--------------------------------------------------------------
+----------------------
> | Vendor | Vendor | Sku Number | Status | Status Detail
+ |
...
> | | | | | 875323.
+ |
> ' | perl -ne 'next if /^\s*-/; s/\|//g; s/\s+/ /g; print;'
Vendor Vendor Sku Number Status Status Detail ID Name SNDYN00003600
+0 Unloadable The SKU is not valid for the vendor with vendor number
+ 875323.