Strip leading/trailing whitespace sed
Trim leading and trailing whitespace from each line
sed 's/^[[:space:]]*//;s/[[:space:]]*$//' file.txt
more sed
all 15 commands →
Trim leading and trailing whitespace from each line
sed 's/^[[:space:]]*//;s/[[:space:]]*$//' file.txt