sed:delete:delete_leading_whitespace_spaces_tabs_from_front_of_each_line
Table of Contents
SED - Delete - Delete leading whitespace (spaces, tabs) from front of each line
sed 's/^[ \t]*//'
NOTE: Aligns all text flush left.
NOTE: The expression '\t' is used to indicate a tab character (0x09) in the scripts.
Some versions of sed do not recognize the '\t' abbreviation, so when typing these scripts from the command line, you should press the TAB key instead.
'\t' is supported as a regular expression.
Example
Example
cat input.txt | sed 's/^[ \t]*//' > output.txt
sed/delete/delete_leading_whitespace_spaces_tabs_from_front_of_each_line.txt · Last modified: 2020/08/16 11:20 by 192.168.1.1