Remove whitespace using sed |
|
|
To remove all whitespace (including tabs) from left to first word, enter:
echo " This is a test" | sed -e 's/^[ \t]*//' |
|
Powered by
KBPublisher (Knowledge base software)
Remove whitespace using sed |
|
|
To remove all whitespace (including tabs) from left to first word, enter:
echo " This is a test" | sed -e 's/^[ \t]*//' |
|