Skip to content

Commit bd10438

Browse files
committed
Adds a readme.md
1 parent 664e939 commit bd10438

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

readme.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# numeric-only
2+
3+
Bash utility function that strips non-numeric characters from its arguments.
4+
5+
## Usage
6+
7+
```sh
8+
numeric-only "123.456.789" # => 123456789
9+
numeric-only 123 456 789 # => 123456789
10+
numeric-only 12. 34 5.6 .78 # => 12345678
11+
```
12+
13+
## License
14+
15+
[ISC](license)

0 commit comments

Comments
 (0)