An open API service indexing awesome lists of open source software.

https://github.com/joeljuca/numeric-only

Bash utility function that strips non-numeric characters from its arguments
https://github.com/joeljuca/numeric-only

bash bash-utility

Last synced: 2 months ago
JSON representation

Bash utility function that strips non-numeric characters from its arguments

Awesome Lists containing this project

README

          

# numeric-only

Bash utility function that strips non-numeric characters from its arguments.

## Usage

```sh
numeric-only "123.456.789" # => 123456789
numeric-only 123 456 789 # => 123456789
numeric-only 12. 34 5.6 .78 # => 12345678
```

## License

[ISC](license)