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 | |
| # ============================================================ | |
| # Instalador do JetBrains Toolbox App — Linux (x86_64) | |
| # Segue o passo a passo oficial da JetBrains | |
| # | |
| # COMO USAR: | |
| # 1. Baixe o .tar.gz em: https://www.jetbrains.com/toolbox-app/ | |
| # 2. Coloque o arquivo na mesma pasta deste script | |
| # 3. Execute: bash installJetbrainsToolbox.sh | |
| # ============================================================ |
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
| #!/bin/bash | |
| # cacar-duplicatas.sh — Encontra arquivos duplicados por hash SHA-256 (Linux) | |
| # Uso: ./cacar-duplicatas.sh [pasta] [tamanho-minimo-bytes] | |
| # Padrao: ~/ com minimo de 1 KB | |
| # Nenhum arquivo e deletado — apenas listados. | |
| set -eo pipefail | |
| YELLOW='\033[1;33m' | |
| RED='\033[1;31m' |
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 | |
| # ============================================================ | |
| # SCRIPT DE PÓS-INSTALAÇÃO PARA LINUX | |
| # ============================================================ | |
| # Autor : vdonoladev | |
| # Versão : 2.0.0 | |
| # Descrição : Instala e configura programas essenciais após | |
| # uma instalação limpa do sistema Linux. | |
| # |
OlderNewer