Make call will now default to +44 if the number starts with a 0
This commit is contained in:
parent
b1fd37754b
commit
0d13928595
1 changed files with 3 additions and 1 deletions
|
@ -27,7 +27,9 @@ while [[ $1 = -?* ]]; do
|
|||
shift
|
||||
done
|
||||
|
||||
number="$1"
|
||||
number="$(echo "$1" | sed 's/^0/+44/')"
|
||||
|
||||
|
||||
|
||||
[ -z "$number" ] && die "No Number Specified"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue