Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

66%
+4 −1
Q&A Simplest way of stripping leading/trailing whitespace from file or program output

What is the simplest shell idiom for stripping leading and trailing whitespace from a file or program output? Ideally I am looking for the equivalent of trim or strip methods in some languages. Th...

3 answers  ·  posted 10mo ago by matthewsnyder‭  ·  last activity 9mo ago by AdminBee‭

Question text-processing
#4: Post edited by user avatar AdminBee‭ · 2023-07-13T04:03:18Z (10 months ago)
Re-tag, since the task is text-processing and not restricted to files, and the central issue is not the newline character. Tried to clarify the task description from my interpretation of the OP's self-answer.
  • Simplest way of stripping leading/trailing whitespace from standard input
  • Simplest way of stripping leading/trailing whitespace from file or program output
  • What is the simplest shell idiom for stripping leading and trailing whitespace from standard output? Ideally I am looking for the equivalent of `trim` or `strip` methods in some languages.
  • There is potentially a confusion here about whether I'm asking about trimming only the first and last lines, or if every line should individually be trimmed. An ideal solution would assume the first, but make the second a CLI switch.
  • What is the simplest shell idiom for stripping leading and trailing whitespace from a file or program output? Ideally I am looking for the equivalent of `trim` or `strip` methods in some languages.
  • The ideal solution should
  • * skip empty lines at the beginning and end of the file/stream
  • * provide an option to also strip leading and trailing whitespace from all non-empty lines
#3: Post edited by user avatar matthewsnyder‭ · 2023-07-09T18:35:45Z (10 months ago)
  • Simplest way of stripping leading/trailing newlines from standard input
  • Simplest way of stripping leading/trailing whitespace from standard input
  • What is the simplest shell idiom for stripping leading and trailing whitespace from standard output? Ideally I am looking for the equivalent of `trim` or `strip` methods in some languages.
  • There is potentially a confusion here about whether I'm asking about trimming only the first and last lines, or if every line should individually be trimmed. An idea solution would assume the first, but make the second a CLI switch.
  • What is the simplest shell idiom for stripping leading and trailing whitespace from standard output? Ideally I am looking for the equivalent of `trim` or `strip` methods in some languages.
  • There is potentially a confusion here about whether I'm asking about trimming only the first and last lines, or if every line should individually be trimmed. An ideal solution would assume the first, but make the second a CLI switch.
#2: Post edited by user avatar matthewsnyder‭ · 2023-07-09T00:43:18Z (10 months ago)
  • Simplest way of stripping leading/trailing newlines from STDOUT
  • Simplest way of stripping leading/trailing newlines from standard input
#1: Initial revision by user avatar matthewsnyder‭ · 2023-07-09T00:42:58Z (10 months ago)
Simplest way of stripping leading/trailing newlines from STDOUT
What is the simplest shell idiom for stripping leading and trailing whitespace from standard output? Ideally I am looking for the equivalent of `trim` or `strip` methods in some languages.

There is potentially a confusion here about whether I'm asking about trimming only the first and last lines, or if every line should individually be trimmed. An idea solution would assume the first, but make the second a CLI switch.