1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
phone-number-normalizer/README.md

29 lines
658 B
Markdown
Raw Permalink Normal View History

2015-05-16 23:22:38 -07:00
# Phone Number Normalizer
## Usage
```
sudo apt-get install xsel xclip
chmod +x normalizer
./normalizer
```
With the application running any phone numbers copied to the clipboard will be
converted into `+12345678900` format.
## Example
I made this script then I was converting all my contacts to this format. Here
was the procedure:
1. Open a contact
2. Double click and drag to select the entire number
3. Press `ctrl + v`
4. Go back and open another contact
## Known Issues
To save a step, this script uses `xsel` rather than `xclip` to read input. For
some reason text seems to only be recognized if selected using a double-click
and drag method.