This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PEM_KEY="~/.ssh/aws-totvs.pem" | |
function list() { | |
echo "ADTsys server list: | |
jerico01 | |
jerico02 | |
jis01 | |
jis02 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CPF and CNPJ validators Rails 3+ style | |
# By Arthur Corenzan <[email protected]> | |
# Based on the work of André Camargo <[email protected]> | |
# | |
# Copy this file to your initializers or lib directory, then apply like this: | |
# | |
# class Person | |
# ... | |
# | |
# validates :cpf, :cpf => true |