| title | author | date | toc | lang | papersize |
|---|---|---|---|---|---|
Instalação do Gitea no Alpine Linux |
Jurandy Soares |
26/nov/2025 |
true |
pt-BR |
a4 |
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 python3 | |
| import csv | |
| import argparse | |
| import ipaddress | |
| import logging | |
| import pathlib | |
| import re | |
| import string | |
| import sys |
- I would like to learn how to program shell scripts using bash.
- Create a small booklet about shell script programming with bash.
- Please generate a 2-columns table with all bash numeric operators, with the 1st column being the operator, and the 2nd the name in English.
- When should I use double brackets in tests?
- Build a side-by-side comparative table showing
[]vs[[]]with examples and differences. - Great, now generate a table with all relational and logical operators in bash.
- Create practical examples showing each operator in action inside a Bash script, so I can test directly in the terminal.
- Now list and explain what the special Bash variables are used for, such as
$#,$*,$?,$@,$0,$1,$2, etc.
- Gostaria de aprender a programar shell script usando o bash.
- Crie uma pequena apostila sobre programação de shell script com bash.
- Por gentileza, gere uma tabela de 3 colunas com todos os operadores numéricos de bash, sendo a 1ª coluna o operador, a segunda o nome e inglês, e a última o significado em português.
- Quando eu devo utilizar dois colchetes em testes?
- Monte uma tabela comparativa lado a lado mostrando
[]vs[[]]com exemplos e diferenças. - Ótimo, agora gere uma tabela com todos os operadores relacionais e lógicos do bash.
- Monte exemplos práticos mostrando cada operador em ação dentro de um script Bash, para eu testar diretamente no terminal.
- Agora me liste e explique para que servem as variáveis especiais de Bash, como
$#,$*,$?,$@,$0,$1,$2e etc.
| title | author | date | lang |
|---|---|---|---|
Caminhos de acesso no Linux |
Timothée Crozat |
26/09/2025 |
pt-BR |
- Fonte: https://doc.ubuntu-fr.org/chemins
- Tradução e revisão: Jurandy Soares (@jurandysoares)
| title | author | date |
|---|---|---|
Questões sobre sistemas operacionais de código aberto (*open source*) |
Jurandy Soares |
12/09/2025 |
Procure respostas para as seguintes perguntas sobre a história dos sistemas operacionais de código aberto, suas licenças e personagens importantes[^1].
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/zsh | |
| curl -LO https://mange.ifrn.edu.br/csv/emojis-animais.csv | |
| groupadd animal | |
| tail +2 emojis-animais.csv | while IFS=, read emoji name nome; do | |
| useradd -m -s /bin/zsh -c "${(C)nome},${name},${emoji}" "${nome}" | |
| echo "${nome}:${name}" | chpasswd | |
| chage -d 0 "${nome}" | |
| usermod -aG animal "$animal" | |
| done |
Roteiro de comandos baseado em: https://wiki.alpinelinux.org/wiki/Setting_up_a_samba-ad-dc
nl /etc/apk/repositoriessed 's/#http/http/' /etc/apk/repositoriesnl /etc/apk/repositoriessed -i 's/#http/http/' /etc/apk/repositories
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
| @startuml | |
| title Divisão do Brasil por Regiões e Estados | |
| ' Brasil | |
| :Brasil: --> N : Norte | |
| :Brasil: --> NE : Nordeste | |
| :Brasil: --> CO : Centro-Oeste | |
| :Brasil: --> SE : Sudeste | |
| :Brasil: --> S : Sul |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder