Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bc, figlet: add Spanish translation #6208

Merged
merged 2 commits into from
Jul 9, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions pages.es/common/bc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# bc

> Un lenguaje de calculadora de precisión arbitraria.
> Más información: <https://manned.org/bc>.

- Iniciar `bc` en el modo interactivo utilizando la biblioteca matemática estándar:
victorhck marked this conversation as resolved.
Show resolved Hide resolved

`bc -l`

- Calcular el resultado de una expresión:
victorhck marked this conversation as resolved.
Show resolved Hide resolved

`bc <<< "(1 + 2) * 2 ^ 2"`

- Calcular el resultado de una expresión y forzar a que el resultado tenga 10 cifras decimales:
victorhck marked this conversation as resolved.
Show resolved Hide resolved

`bc <<< "scale=10; 5 / 3"`

- Calcular el resultado de una expresión con el seno y coseno utilizando `mathlib`:
victorhck marked this conversation as resolved.
Show resolved Hide resolved

`bc -l <<< "s(1) + c(1)"`
20 changes: 20 additions & 0 deletions pages.es/common/figlet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# figlet

> Genera encabezados usando caracteres ASCII desde la entrada del usuario.
> Más información: <http://www.figlet.org/figlet-man.html>.

- Generar el encabezado directamente introduciendo el texto:
victorhck marked this conversation as resolved.
Show resolved Hide resolved

`figlet {{entrada_de_texto}}`
victorhck marked this conversation as resolved.
Show resolved Hide resolved

- Usar un archivo de fuente personalizada:
victorhck marked this conversation as resolved.
Show resolved Hide resolved

`figlet {{entrada_de_texto}} -f {{nombre_de_archivo_de_fuente}}`
victorhck marked this conversation as resolved.
Show resolved Hide resolved

- Redirigir la salida de un comando hacia figlet:
victorhck marked this conversation as resolved.
Show resolved Hide resolved

`{{comando}} | figlet`

- Mostrar las fuentes disponibles para figlet:
victorhck marked this conversation as resolved.
Show resolved Hide resolved

`showfigfonts {{texto_opciona_a_mostrar}}`
victorhck marked this conversation as resolved.
Show resolved Hide resolved