domingo, 22 de mayo de 2022

Copiar código con colores highlighted en lenguajes como c c++ python bash java - Скопируйте код с выделенными цветами на таких языках, как c, c++, python, bash, java.

Copiar código con colores highlighted  en lenguajes como c c++ python bash java

Скопируйте код с выделенными цветами на таких языках, как c, c++, python, bash, java.


https://tohtml.com/

Online syntax highlighting for the masses!

Beautify your code


Ejemplo en bash:
- copiar en https://tohtml.com/ el código
- A mi me gusta style "black"
- convertirlo al lenguaje escogido o auto
- Luego dar en el botón copy to clipboard, y listo

#!/bin/bash
#Autor: Alexander Arias
#FEcha: 2022-05-22
echo "---------------------------------"
echo "Funciones"
echo "---------------------------------"
echo "function to add two numbers"
echo "---------------------------------"
#function to add two numbers
add(){
x=$1
y=$2
echo -e "Number entered by u are: $x and $y"
echo "sum of $1 and $2 is `expr $x + $y` "
}
# main script
echo "enter first number"
read first
echo "enter second number"
read sec
#calling function
add $first $sec

echo "---------------------------------"
echo "Another Function to add two numbers"
echo "---------------------------------"

suma(){
a=$1
b=$2
c=$(($a+$b))
echo "la suma de $a + $b es $c"
}
suma 10 20

echo "---------------------------------"
echo "Function to add two numbers and return value"
echo "---------------------------------"

suma1(){
a=$1
b=$2
c=$(($a+$b))
#echo "la suma de $a + $b es $c"
return $c
}
#Llamar la funcion
suma1 10 20
#El valor de la ejecución se guarda en $?
#lo guardo en d
d=$?
echo $d
echo "---------------------------------"
echo "end of the script"




No hay comentarios:

Publicar un comentario