Delete Leading Whitespace Using Sed

Tagged with: , , , , ,

Delete leading whitespace (spaces/tabs/etc) from beginning of each line. Same as yesterday’s command – but using sed


cat file.txt | sed -e 's,^ *,,'

Credit: Vivin

Leave a Reply