This file contains hidden or 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
#!/usr/bin/env bash | |
deps=("john") | |
for a in ${deps[@]}; do | |
if [[ ! $(which $a 2>/dev/null) ]]; then | |
echo "Need install: $a." | |
exit 1 | |
fi | |
done |
This file contains hidden or 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
#!/usr/bin/env bash | |
#------------------------------CABEÇALHO---------------------------------------| | |
# | |
# AUTOR: | Microjus <[email protected]> | |
# URL: | https://github/Microjus/Micro-ProgressBar_V4/ | |
# DATA: | 2021-25-17 | |
# PROGRAMA: | Micro-progressbar_v4 | |
# VERSÃO: | final | |
# LICENÇA: | MIT |
This file contains hidden or 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
for i in {000000000..100000000}; do | |
echo "$i" >> brute.txt | |
done | |
# gerando um arquivo contendo toda sequencia numeria informada |
This file contains hidden or 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
#!/usr/bin/env bash | |
#------------------------------CABEÇALHO---------------------------------------| | |
# | |
# AUTOR: | Microjus <[email protected]> | |
# URL: | https://github/Microjus/Micro-Cut/ | |
# DATA: | 2021-12-17 | |
# PROGRAMA: | Micro-Cut | |
# VERSÃO: | final | |
# LICENÇA: | MIT | |
# DESCRIÇÃO: | Script simples para remoçao de caracteres indesejaveis |
This file contains hidden or 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
#!/usr/bin/env bash | |
# RADAR EM SHELL SCRIPT SEM BLOCO IF | |
# APENAS COM O TEST OU [] | |
# Limite de velocidade é 80km | |
# Se estiver a 85km não leva multa | |
# Cuidado !!! | |
[[ "$USER" != "root" ]] && { echo "É NESCESSARIO ROOT" ; exit 1 ; } #verifica se é root |
This file contains hidden or 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
#!/usr/bin/env bash | |
#------------------------------CABEÇALHO---------------------------------------| | |
# | |
# AUTOR: | Microjus <[email protected]> | |
# URL: | https://github/Microjus/Micro-ProgressBar_V4/ | |
# DATA: | 2021-25-17 | |
# PROGRAMA: | Micro-progressbar_v4 | |
# VERSÃO: | final | |
# LICENÇA: | MIT |
This file contains hidden or 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
#!/usr/bin/env bash | |
#------------------------------CABEÇALHO---------------------------------------| | |
# | |
# AUTOR: | Microjus <[email protected]> | |
# URL: | https://github/Microjus/Micro-ProgressBar_V3/ | |
# DATA: | 2021-25-17 | |
# PROGRAMA: | Micro-progressbar_v3 | |
# VERSÃO: | final | |
# LICENÇA: | MIT |
This file contains hidden or 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
#!/usr/bin/env bash | |
#------------------------------CABEÇALHO---------------------------------------| | |
# | |
# AUTOR: | Microjus <[email protected]> | |
# URL: | https://github/Microjus/Micro-ProgressBar_V2/ | |
# DATA: | 2021-25-17 | |
# PROGRAMA: | Micro-progressbar_v2 | |
# VERSÃO: | final | |
# LICENÇA: | MIT |
This file contains hidden or 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
#!/usr/bin/env bash | |
#------------------------------CABEÇALHO---------------------------------------| | |
# | |
# AUTOR: | Microjus <[email protected]> | |
# URL: | https://github/Microjus/Micro-ProgressBar_V1/ | |
# DATA: | 2021-12-17 | |
# PROGRAMA: | Micro-progressbar_v1 | |
# VERSÃO: | final | |
# LICENÇA: | MIT |
NewerOlder