The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55 will be the first on the list, already selected:
🇧🇷 [pt-BR]
The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55 will be the first on the list, already selected:
🇧🇷 [pt-BR]
| #!/bin/bash | |
| # Thanks goes to @pete-otaqui for the initial gist: | |
| # https://gist.github.com/pete-otaqui/4188238 | |
| # | |
| # Original version modified by Marek Suscak | |
| # | |
| # works with a file called VERSION in the current directory, | |
| # the contents of which should be a semantic version number | |
| # such as "1.2.3" or even "1.2.3-beta+001.ab" |
| # # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # # for examples | |
| # | |
| # # If not running interactively, don't do anything | |
| # case $- in | |
| # *i*) ;; | |
| # *) return;; | |
| # esac | |
| # |