Skip to content
/ chomp Public

CLI tool that removes whitespace/empty lines from command output

License

Notifications You must be signed in to change notification settings

purarue/chomp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chomp

usage: chomp [-h] [FLAGS]

Receives input from STDIN
Removes extra whitespace characters from the beginning/end of lines
Removes lines which have just whitespace (no content)

Flags:
  -max-capacity int
    	Maximum capacity for each line in kilobytes. Can also set through CHOMP_MAX_CAPACITY environment variable. (default 64)

This is essentially a portable (and 3x faster):

sed -E -e 's/^\s*//; s/\s*$//; /^\s*$/d'

I use this in scripts when trying to remove spaces from user input/command output. Its also often helpful when data wrangling, to be able to quickly ignore lines/spaces I'm not interested in.

Install

Using go install to put it on your $GOBIN:

go install github.com/purarue/chomp@latest

Manually:

git clone https://github.com/purarue/chomp
cd ./chomp
go build .
# copy binary somewhere on your $PATH
sudo cp ./chomp /usr/local/bin

Example

Typically this would be used by piping some command into it:

$ man -P cat rm | head
RM(1)               User Commands              RM(1)

NAME
       rm - remove files or directories

SYNOPSIS
       rm [OPTION]... [FILE]...

DESCRIPTION
       This manual page documents the GNU version of
$ man -P cat rm | head | chomp
RM(1)               User Commands              RM(1)
NAME
rm - remove files or directories
SYNOPSIS
rm [OPTION]... [FILE]...
DESCRIPTION
This manual page documents the GNU version of

About

CLI tool that removes whitespace/empty lines from command output

Resources

License

Stars

Watchers

Forks

Languages