
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Contents
grp
is a Unix CLI that facilitates breaking text into groups of characters with a variety of options
and also offers formatting numbers with digit grouping (thousands separators) based on the active locale.
See the examples below, concise usage information further below, or read the manual.
# By default, break a string into space-separated groups of 3 chars.,
# starting from the right (end).
$ grp 1000000 2000
1 000 000
2 000
# Use proper number formatting (separation with locale-specific thousands
# separators) with -n; example output from the U.S. English locale:
$ grp -n 1000000 1999.99
1,000,000
1,999.99
# Break input into lines of 3 characters each, starting from the left:
$ grp -c 3 -s $'\n' -l abcdefgh
abc
def
gh
# Insert a '.' between characters:
$ grp -c 1 -s . abcdef
a.b.c.d.e.f
# Enclose each character in square brackets:
$ grp -c 1 -f '[%s]' abc
[a][b][c]
# Format text as a US telephone number:
$ echo '6085277865' | grp -f '+1 (%s) %s-%s' -c 3,3,4
+1 (608) 527-7865
# Break the input into repeating groups of 2 and 1 char. each:
$ grp -l -c 2,1+ -s / abcdefgh
ab/c/de/f/gh
Supported platforms
With Node.js or io.js installed, install the package as follows:
[sudo] npm install grp-cli -g
Note:
sudo
depends on how you installed Node.js / io.js and whether you've changed permissions later; if you get an EACCES
error, try again with sudo
.-g
ensures global installation and is needed to put grp
in your system's $PATH
.grp
.chmod +x grp
.$PATH
, such as /usr/local/bin
(OSX) or /usr/bin
(Linux).Find concise usage information below; for complete documentation, read the manual online or,
once installed, run man grp
(grp --man
if installed manually).
$ grp --help
Format numbers with digit grouping:
grp -n [-t <term>] [<num>...]
Break text into groups of characters:
grp [-l | -r] [-c <count>] [-s <sep> | -f <fmt>] [-t <term>] [<txt>...]
Options:
-n apply locale-aware digit grouping to input numbers
-t <term> terminator to append to each argument's result; default: \n
-l, -r start grouping from left / right (default)
-c <count> count of chars. per group - may be comma-separated list
-s <sep> either: separator to place between groups; default: a space
-f <fmt> or: printf-style format string to apply to groups
Copyright (c) 2015-2016 Michael Klement mklement0@gmail.com (http://same2u.net), released under the MIT license.
This project gratefully depends on the following open-source components, according to the terms of their respective licenses.
npm dependencies below have optional suffixes denoting the type of dependency; the absence of a suffix denotes a required run-time dependency: (D)
denotes a development-time-only dependency, (O)
an optional dependency, and (P)
a peer dependency.
Versioning complies with semantic versioning (semver).
v0.1.4 (2016-06-05):
-n
to group numbers, the -t
option is now respected.-n
.v0.1.3 (2015-09-17):
grp
now comes with a man page (invoke with grp --man
in case of manual installation); grp -h
now just prints concise usage info.v0.1.2 (2015-09-15):
v0.1.1 (2015-06-13):
v0.1.0 (2015-06-13):
FAQs
Unix CLI that facilitates breaking text into groups of characters.
We found that grp-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.