trim alternatives and similar packages
Based on the "Text" category.
Alternatively, view trim alternatives based on common mentions on social networks and blogs.
-
skylighting
A Haskell syntax highlighting library with tokenizers derived from KDE syntax highlighting descriptions -
double-conversion
A fast Haskell library for converting between double precision floating point numbers and text strings. It is implemented as a binding to the V8-derived C++ double-conversion library.
InfluxDB – Built for High-Performance Time Series Workloads

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of trim or a related project?
Popular Comparisons
README
trim
trim
is a simple unix-philosophy tool to trim trailing whitespace from a file.
It is designed to be simple and transparent. It takes input from stdin and
output from stdout, for easy piping.
Usage
trim [-N|--newlines] [-o|--output ARG] [FILE]
trim
with no flags takes input from stdin and prints to stdout. It trims
trailing whitespace from each line, but does not trim additional newlines.
[FILE]
The file to read from. IfFILE
is a single hyphen-
or unspecified, read from standard input.--output
,-o
[FILENAME]
write to the given filename instead of stdout--newlines
,-N
Trim trailing newlines as well
Installation
You can easily install using cabal
as follows:
cabal v2-update && cabal v2-install trim
Building
Build with cabal v2-build
Testing
Test with ./test.sh