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 | |
# do not forget to run chmod 755 on this script | |
for i in *.mp4; do | |
#file format is: YYYYmmdd_hhmmss | |
echo "$i" | |
day="${i:6:2}" | |
month="${i:4:2}" | |
year="${i:0:4}" |
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
# This command will generate the md5 for every file in a folder. The result will be the file path and name | |
# followed by checksum for every file | |
find 2004PhotosVideos -type f -exec md5 -r {} \; | sort | tee pv.txt | |
# This command will generate the md5 for every file in a folder. The result will be the checksum for every file | |
# (no file names included) | |
find 2004PhotosVideos -type f -exec md5 -q {} \; | sort | tee pv-q.txt | |
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
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n | |
# Este arquivo deve ser colocado em config/locales/devise.pt-BR.yml | |
pt-BR: | |
devise: | |
confirmations: | |
confirmed: "Sua conta foi confirmada com sucesso." | |
send_instructions: "Você receberá um email para confirmar sua conta em alguns minutis." | |
send_paranoid_instructions: "Caso seu endereço de email já exista em nossa base, você receberá um email com instruções sobre como ativar sua conta." | |
failure: |
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
# Additional translations at http://github.com/plataformatec/devise/wiki/I18n | |
# Este arquivo deve ser colocado em config/locales/devise.pt-BR.yml | |
pt-BR: | |
errors: | |
messages: | |
expired: "expirou, por favor solicite um novo" | |
not_found: "não encontrado" | |
already_confirmed: "já foi confirmado, por favor tente fazer login" | |
not_locked: "não estava bloqueado" |