Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

remove space at end of line file

Use either one of both next commands with sed 's/to_replace/replace/':
sed 's/ *$//' file
sed 's/[[:blank:]]*$//' file
 
PREVIOUS NEXT
Tagged: #remove #space #line #file
ADD COMMENT
Topic
Name
3+9 =