Cordiales Saludos <center>  </center> A partir de esta publicación **Programación en Bash** abordaré todo lo relacionado con Bash de una forma independiente. Antes referenciaba la programación bash al final de la explicación de algún tema o comando de linux. La división permitirá estructurar mejor el **Curso de Linux**. Todos los ejercicios estarán en el repositorio de GitLab: * https://gitlab.com/btcsiraquino/hp_bash_ejercicios <center>  </center> ### Variables El uso de las variables dentro de la programacíón en bash tienen su sintaxis como el siguiente ejemplo: **VAR1="Palabra"**, es decir debe estar todo unido, el identificador de la variable, el signo de igual y el valor de la variable. #### Tipo String En los tipos string podemos usar tanto comillas simples como comillas dobles. En la siguiente captura se aprecia como podemos visualizar las variables de distintas formas utilizando el comando **echo**. Y hacemos un repaso de la concatenación de variables. Este es el formato para tratar las variables en bash: **${VAR1}** <center>  </center> Código ~~~ #!/bin/bash #script_7.sh echo Mostrando Variables VAR1="Palabra" VAR2="Esta es una Frase" echo "Esta es VAR1: ${VAR1}" #Primera Forma echo "Esta es VAR2: " ${VAR2} #Segunda forma V="Nombre" echo "${V}" echo ${V} #.............................. # En un ejercicio anterior # Concatenando variables echo "Concatenando variables" echo "Script Saludo" V1='Hola' V2='Mundo' V3="${V1} ${2}" echo "${V3}" ~~~ Ejecución del código ~~~ $ bash script_7.sh Mostrando Variables Esta es VAR1: Palabra Esta es VAR2: Esta es una Frase Nombre Nombre Concatenando variables Script Saludo Hola ~~~ <center>  </center> #### Tipo numérico Al igual que las variables tipo string deben estar junto el identificador, el signo igual y el valor. Cuando se trabaja con números debemos usar el doble paréntesis. Este es el formato para tratar las variables numéricas en bash: $(( NUM1 + NUM2 )) <center>  </center> Código ~~~ #!/bin/bash #script_8.sh echo "Variables Numéricas" NUM1=1 NUM2=3 SUMA=$(( NUM1 + NUM2 )) echo "La suma es: ${SUMA}" echo "La suma de 4 + 7 es: " $(( 4 + 7 )) ~~~ Ejecución del código ~~~ $ bash script_8.sh Variables Numéricas La suma es: 4 La suma de 4 + 7 es: 11 ~~~ <center>  </center> #### Pasando Argumentos a nuestro script Podemos enviar valores a nuestros script como argumentos. Para pasar los argumentos colocamos el nombre del script seguido de los argumentos como se ve en la siguiente sintaxis: **script_9.sh 1 3**, los argumentos son los números **1 y 3**. Al enviar los argumentos son recibidos sus valores en las variables especiales: $1 y $2, donde el número determina la posición del argumento. <center>  </center> Código ~~~ #!/bin/bash #script_9.sh echo "Variables Numéricas - Recibiendo argumentos" NUM1=$1 NUM2=$2 SUMA=$(( NUM1 + NUM2 )) echo "La suma es: ${SUMA}" ~~~ Ejecutando el código ~~~ $ bash script_9.sh 1 3 Variables Numéricas - Recibiendo argumentos La suma es: 4 ~~~ <center>  </center> Variables especiales Ya conocemos las variables especiales: $1, primer argumento, $2 segundo argumento, y así sucesivamente. Se complementan con las variables: * $0 : Nombre del script * $# : Cantidad de argumentos * $@ : Todos los argumentos pasados al script * $LINENO: Número de lineas del script <center>  </center> Código ~~~ #!/bin/bash #script_10.sh echo "Argumentos - Variables especiales" echo "Primer argumento pasado: " $1 echo "Segundo argumento pasado: " $2 echo "Este es el nombre del Script: " $0 echo "Cantidad de argumentos pasados al script: " $# echo "Argumentos pasados a este script: " $@ echo "Número de líneas del script: " $LINENO ~~~ Ejecución del código ~~~ $ bash script_10.sh 1 3 Argumentos - Variables especiales Primer argumento pasado: 1 Segundo argumento pasado: 3 Este es el nombre del Script: script_10.sh Cantidad de argumentos pasados al script: 2 Argumentos pasados a este script: 1 3 Número de líneas del script: 9 ~~~ <center>  </center> #### shift Con shift podemos alterar la posición de los argumentos que entran al script. El valor de **shift** más 1, determinará a partir de que posición se tomarán los argumentos. En el siguiente ejemplo shift tiene el valor de 1, entonces se tomarán los argumentos a partir del segundo valor, en este caso el número 2, el cual tomará la primera posición. Omitiéndose el numero 1 de los argumentos. ~~~ $ cat script_12.sh #!/bin/bash # script_12.sh echo "Cambiando orden de los argumentos" shift 1 echo "shift 1" echo 1= $1 echo 2= $2 echo 3= $3 $ bash script_12.sh 1 2 3 Cambiando orden de los argumentos shift 1 1= 2 2= 3 3= ~~~ En este caso shift tiene el valor de 2, es decir se tomarán los valores a partir del tercer argumento. El tercer argumento tomará el primer lugar. ~~~ $ cat script_12.sh #!/bin/bash # script_12.sh echo "Cambiando orden de los argumentos" shift 2 echo "shift 2" echo 1= $1 echo 2= $2 echo 3= $3 $ bash script_12.sh 1 2 3 Cambiando orden de los argumentos shift 2 1= 3 2= 3= ~~~ <center>  </center> #### Comentarios Los comentarios de una sola línea comienzan con el signo: #. Ésto ya se había tratado en publicaciones anteriores. Ahora para la realización de comentarios de múltiples líneas los podemos hacer como podemos observar en la siguiente captura de pantalla. <center>  </center> Puedes profundizar en el siguiente enlace el tema de [Heredoc](https://es.wikipedia.org/wiki/Here_document). Código ~~~ #!/bin/bash # script_11.sh # Un solo comentario : 'Comentario de varias lineas por ejemplo este tiene cuatro lineas ' : <<! Comentario de multilinea. Son tres lineas ! <<Comento Otra forma de comentario es usando el 'Heredoc' donde podemos cambiar la palabra que contiene el comentario. XXX Aquí use: Comento. Fin del comentario Comento # Encontrarás multiples comentarios # dentro del sistema que puedes hacer, # igual funciona. echo "Hola" ~~~ Ejecución del código ~~~ $ bash script_11.sh Hola ~~~ <center>  </center> #### Palabras Reservadas Como cualquier lenguaje de programación Bash posee una lista de palabras que no podemos utilizar como **variables** dentro de nuestro script. | | | | | | | :-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:|:-------------------------:|:-------------------------: | if | then | elif | else| fi | time | | for | in | until | while | do | done | | case | esac | coproc | select | function | | --- Te recomiendo que revises mis Publicaciones anteriores referentes a la rpogramación en BAsh {1} [Curso de Linux N03](https://peakd.com/hive-154226/@rafaelaquino/curso-de-linux-n03-tuberias-pipelines-grep-sort-env-printenv-bash) Temas Tratados: * Shebang, hash-bang o sharpbang (#!) * Distintas formas de ubicar nuestro Shell: /bin/bash * Nuestro primer Script en Bash {2} [Curso de Linux N04](https://peakd.com/hive-154226/@rafaelaquino/curso-de-linux-n04-apropos-man-k-uniq-type-bashcurso02) Temas Tratados: * Uso de Nano * Comandos echo, date y cal, Coemntarios * Ejecutando nuestros scripts * variables en Bash {3} [Curso de Linux N09](https://peakd.com/hive-154226/@rafaelaquino/curso-de-linux-n09-miscelaneas03-instalacion-de-mint-bashcurso) Temas Tratados: * Concatenando Variables * Visualizando con echo: HOSTNAME, USER, HOME {4} [Curso de Linux N10.](https://peakd.com/hive-154226/@rafaelaquino/curso-de-linux-n10-enlace-simbolico-1-bashcurso) Temas Tratados: * Concatenando Texto con **echo** * Comillas dobles con **echo** {5} [Curso de Linux N11](https://peakd.com/hive-154226/@rafaelaquino/curso-de-linux-n11-enlace-simbolico-2-bashcurso) Temas Tratados: * Visualización de lista de ejercicios en nuestro directorio: cat bash_0*.* * Creación de un archivo de texto desde un script en bash <center>  </center> >IMPORTANTE: Los comando vistos aquí y en próximas publicaciones están limitados para mostrarlos y conceptualizarlos para nuestro quehacer diario. Cada comando tiene muchas opciones que debemos investigar por nuestra propia cuenta cuando estemos trabajando con ellos. Aprovechemos el internet para conocer en profundidad el comando que estemos estudiando y en primer orden no olvidemos lo potente y todo lo que nos brinda el comando **man** para conocer la sintaxis y todo lo relacionado con todos los comandos que tenemos en nuestro sistema sin recurrir a internet. <center>  </center> ##### Trabajando con nuestro repositorio en GitLab El repositorio de los ejercicios de Bash se creó en mi laptop ([Puedes ver la publicación](https://peakd.com/hive-154226/@rafaelaquino/curso-de-linux-n12-miscelaneas04-repositorio-en-gitlab-de-ejercicios-en-bash-1)), en este momento estoy usando la PC, entonces cloné el repositorio en este equipo([Ver como clonar repositorio](https://peakd.com/hive-154226/@rafaelaquino/curso-de-linux-n13-miscelaneas05-repositorio-en-gitlab-de-ejercicios-en-bash-2)). Se revisó el repositorio en GitLAb, donde se determina que hay un nuevo script. <center>  </center> Verificando que en nuestro repositorio no se encuentra el archivo script_6.sh por medio del comando **ls**. Se procede a actualizar el repositorio local con el comando: **git pull**. Podemos observar al final de la captura de pantalla de mi terminal que ya aparece el archivo: **script_6.sh**. <center>  </center> Así actualice mi repositorio ~~~ rafael@HP:~/.r/hp_bash_ejercicios$ rafael@HP:~/.r/hp_bash_ejercicios$ git status Archivos sin seguimiento: (usa "git add <archivo>..." para incluirlo a lo que se será confirmado) documento.txt hola.txt script_10.sh script_11.sh script_12.sh script_7.sh script_8.sh script_9.sh rafael@HP:~/.r/hp_bash_ejercicios$ git add *.sh rafael@HP:~/.r/hp_bash_ejercicios$ git commit -m "Ejercicios del 7 al 12" rafael@HP:~/.r/hp_bash_ejercicios$ git push ~~~ [Ver repositorio de ejercicios](https://gitlab.com/btcsiraquino/hp_bash_ejercicios) --- ##### Practicando enlace simbólico Aquí un uso del enlace simbólico. <center>  </center> --- Todos a practicar, incluyéndome! Nos vemos en la próxima publicación... > --- AVISO: Es importante que nuestra información personal (documentos, imágenes, fotos, etc) estén respaldadas en otro medio físico o en la nube. No solamente porque estemos haciendo este curso sino como práctica diaria.--- [Mi Twitter](https://twitter.com/Rafa_elaquino)
author | rafaelaquino |
---|---|
permlink | curso-de-linux-n14-programacion-en-bash-001-variables-argumentos-shift-comentarios-palabras-reservadas |
category | hive-154226 |
json_metadata | {"app":"peakd/2023.8.1","format":"markdown","tags":["developer","spanish","linux","stemsocial","stem-espanol","neoxian","tribes","freesoftware","opensource","softwarelibre"],"users":["rafaelaquino"],"image":["https://files.peakd.com/file/peakd-hive/rafaelaquino/48jibtEVsncTVbhFgKs9nRYUm4nxVTnYAGCgDAVQU5QfXr5AoBDsrTVXbExoYt3gzW.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23wzvMoqqWSKfdAQe16wTV4VBydv67FCPeZeuGZJDnQoXysr6m1ECbfFg7PVLZGq1kXCC.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23swigLghRszDpgZJa75JrAqiTFVWhSBxQAkecN8rySTMrosZAvh1QGvFEkVe9AYFwnzu.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23uFPJhEN7pXCFuUPACERgPpACAageNzbGoxYWb4RbcMBnbuk7NWs5SLMiH6e629fH5Tb.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23swib4S9b1eL9SUV6mxN1fNJQKxvzXvcM9QDqzbGpjewPyWKtwAzH1VcYFugwSxFVnvo.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23swiWAiVyML1Lpe9ideVCPJ9n34PJfn5QNm7cLAkvKg2vKXi4z9qGhUdMtsh6xTPQYnn.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23swkEXHxQkaC2ibMhkHTdhjzHr4bEEnVNrMqKeC7CRbgJELTyDzR1Enhg19kikjcEtsi.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23tGZmVjo31t2M4vNtXdSrJ5KKNybfks5t4Sn7iePwnnXdPF8zDTffUKB6y4UkM3PWRLD.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23x12wZzMf7DjB6GW52zsevyqz1Uuxc7cWjU95QzeTkZJ2BF1rU3Bka4NmgY8zYxuWcSw.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23tSzChULoLwrweRfa7oxZsc8Dd4WBh57JssCfo7Q8B4eDY1ogUNeo5936fZTG1D6Lhhy.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23t797VNVVVUZuQ2k9niYD6o2uigTXCdoDXAmLwvcJG7hV5XXdAX8qw9EJv6uTZMTd45e.png","https://files.peakd.com/file/peakd-hive/rafaelaquino/23swkNhVZXmhwCvJ1Umqh4ZdUvsh9fGCoqFk1ZqWSiSBCzVzsPeCCPqspgqemsFojGbwe.png"]} |
created | 2023-09-11 16:55:00 |
last_update | 2023-09-11 17:13:30 |
depth | 0 |
children | 1 |
last_payout | 2023-09-18 16:55:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.837 HBD |
curator_payout_value | 1.783 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12,983 |
author_reputation | 110,423,639,605,208 |
root_title | "Curso de Linux N14. Programación en Bash 001: Variables, argumentos, shift, comentarios, palabras reservadas" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 127,054,865 |
net_rshares | 9,042,111,886,663 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevinwong | 0 | 1,240,227,277 | 0.18% | ||
justtryme90 | 0 | 547,113,816 | 30% | ||
eric-boucher | 0 | 6,351,358,614 | 1.2% | ||
thecryptodrive | 0 | 24,276,809,671 | 0.48% | ||
roelandp | 0 | 163,199,256,416 | 15% | ||
cloh76 | 0 | 1,698,477,655 | 1.2% | ||
pipokinha | 0 | 64,801,066,379 | 100% | ||
lordvader | 0 | 19,406,781,639 | 2.4% | ||
lemouth | 0 | 891,721,074,625 | 30% | ||
netaterra | 0 | 19,512,300,484 | 1.2% | ||
lamouthe | 0 | 2,312,259,711 | 30% | ||
tfeldman | 0 | 2,327,908,083 | 1.2% | ||
sergiomendes | 0 | 862,559,026 | 1.2% | ||
metabs | 0 | 3,160,908,069 | 30% | ||
mcsvi | 0 | 126,628,416,297 | 50% | ||
lk666 | 0 | 769,081,991 | 1.2% | ||
cnfund | 0 | 4,908,638,177 | 2.4% | ||
boxcarblue | 0 | 5,783,560,162 | 1.2% | ||
justyy | 0 | 15,756,203,044 | 2.4% | ||
michelle.gent | 0 | 1,403,504,059 | 0.48% | ||
curie | 0 | 204,739,258,170 | 2.4% | ||
modernzorker | 0 | 1,564,645,699 | 1.68% | ||
techslut | 0 | 78,615,222,800 | 12% | ||
steemstem | 0 | 542,799,546,741 | 30% | ||
edb | 0 | 3,336,511,733 | 3% | ||
yadamaniart | 0 | 1,387,655,063 | 1.2% | ||
bigtakosensei | 0 | 704,903,031 | 0.6% | ||
walterjay | 0 | 179,190,738,871 | 15% | ||
valth | 0 | 4,608,533,243 | 15% | ||
metroair | 0 | 11,503,183,161 | 2.4% | ||
driptorchpress | 0 | 885,239,136 | 0.6% | ||
dna-replication | 0 | 1,129,384,020 | 30% | ||
privex | 0 | 2,956,409,842 | 2.4% | ||
steemiteducation | 0 | 504,871,582 | 1.2% | ||
dhimmel | 0 | 156,832,566,401 | 7.5% | ||
oluwatobiloba | 0 | 956,361,457 | 30% | ||
detlev | 0 | 10,481,529,870 | 0.72% | ||
dimarss | 0 | 4,332,120,686 | 20% | ||
ycam | 0 | 1,072,565,316 | 100% | ||
federacion45 | 0 | 3,752,163,210 | 1.2% | ||
gamersclassified | 0 | 1,515,038,444 | 1.2% | ||
iansart | 0 | 3,621,408,412 | 1.2% | ||
forykw | 0 | 7,542,525,389 | 1.2% | ||
mobbs | 0 | 57,212,977,970 | 15% | ||
eliel | 0 | 2,413,080,661 | 2.4% | ||
jerrybanfield | 0 | 8,648,123,324 | 2.4% | ||
rt395 | 0 | 1,824,162,387 | 1.5% | ||
bitrocker2020 | 0 | 4,844,858,780 | 0.36% | ||
sustainablyyours | 0 | 13,408,213,026 | 15% | ||
helo | 0 | 11,591,427,531 | 15% | ||
arunava | 0 | 9,375,562,923 | 0.96% | ||
schoolforsdg4 | 0 | 1,073,371,058 | 5% | ||
samminator | 0 | 21,301,309,501 | 15% | ||
enjar | 0 | 18,062,134,279 | 2.16% | ||
lorenzor | 0 | 1,329,421,039 | 50% | ||
sam99 | 0 | 13,887,783,538 | 21% | ||
alexander.alexis | 0 | 18,127,568,433 | 30% | ||
dandesign86 | 0 | 16,010,447,137 | 8% | ||
jayna | 0 | 3,238,295,880 | 0.48% | ||
deanlogic | 0 | 578,310,876 | 1.2% | ||
princessmewmew | 0 | 3,426,625,863 | 1.2% | ||
grapthar | 0 | 460,256,352 | 1.8% | ||
joeyarnoldvn | 0 | 478,029,531 | 1.47% | ||
gunthertopp | 0 | 32,832,621,540 | 0.6% | ||
pipiczech | 0 | 996,429,886 | 2.4% | ||
empath | 0 | 1,773,298,731 | 1.2% | ||
minnowbooster | 0 | 1,041,023,181,732 | 20% | ||
howo | 0 | 958,347,449,662 | 30% | ||
tsoldovieri | 0 | 3,115,813,544 | 15% | ||
steemwizards | 0 | 2,027,845,349 | 2.4% | ||
neumannsalva | 0 | 1,996,616,166 | 1.2% | ||
stayoutoftherz | 0 | 66,046,210,824 | 0.6% | ||
abigail-dantes | 0 | 10,924,756,686 | 30% | ||
coindevil | 0 | 1,234,377,137 | 1.92% | ||
pixelfan | 0 | 58,544,281,829 | 6.3% | ||
zonguin | 0 | 1,574,078,013 | 7.5% | ||
investingpennies | 0 | 9,153,002,045 | 2.4% | ||
martibis | 0 | 1,102,530,496 | 0.72% | ||
redrica | 0 | 868,137,027 | 1.2% | ||
aurodivys | 0 | 62,728,746,592 | 100% | ||
iamphysical | 0 | 886,644,604 | 90% | ||
zyx066 | 0 | 2,431,272,665 | 0.72% | ||
revo | 0 | 4,851,407,615 | 2.4% | ||
azulear | 0 | 1,483,995,416 | 100% | ||
sofiaquino98 | 0 | 148,112,573,218 | 100% | ||
psicoluigi | 0 | 840,790,963 | 50% | ||
rocky1 | 0 | 348,383,231,679 | 0.36% | ||
thelordsharvest | 0 | 2,234,129,971 | 2.4% | ||
sumant | 0 | 5,716,793,799 | 1.2% | ||
aidefr | 0 | 3,148,716,883 | 15% | ||
torico | 0 | 615,637,827 | 0.79% | ||
therealwolf | 0 | 15,069,624,126 | 1.2% | ||
fatman | 0 | 9,115,111,659 | 2% | ||
inthenow | 0 | 19,375,123,091 | 20% | ||
splash-of-angs63 | 0 | 7,230,287,539 | 30% | ||
cryptononymous | 0 | 808,482,990 | 1.2% | ||
meno | 0 | 11,296,162,744 | 1.2% | ||
steemed-proxy | 0 | 509,416,528,444 | 2.4% | ||
fatkat | 0 | 609,172,477 | 1.19% | ||
doifeellucky | 0 | 4,899,666,215 | 1.2% | ||
enzor | 0 | 943,203,540 | 15% | ||
bartosz546 | 0 | 6,039,447,219 | 1.2% | ||
dandays | 0 | 6,881,226,224 | 0.45% | ||
notb4mycoffee | 0 | 1,447,918,049 | 2.4% | ||
silverwhale | 0 | 605,373,174 | 2.16% | ||
maverickfoo | 0 | 13,755,622,745 | 50% | ||
alvinauh | 0 | 1,318,609,519 | 30% | ||
sunsea | 0 | 1,933,047,612 | 1.2% | ||
bluefinstudios | 0 | 1,687,476,999 | 0.72% | ||
steveconnor | 0 | 2,017,238,919 | 1.2% | ||
sankysanket18 | 0 | 692,116,375 | 15% | ||
dbddv01 | 0 | 1,069,598,153 | 7.5% | ||
nicole-st | 0 | 814,028,364 | 1.2% | ||
smartsteem | 0 | 59,053,186,033 | 1.2% | ||
aboutcoolscience | 0 | 7,711,440,744 | 30% | ||
afifa | 0 | 709,387,715 | 10% | ||
sandracarrascal | 0 | 492,502,615 | 50% | ||
kenadis | 0 | 8,092,469,727 | 30% | ||
amaponian | 0 | 1,416,968,682 | 100% | ||
madridbg | 0 | 12,509,193,034 | 30% | ||
lpv | 0 | 1,268,724,142 | 3.75% | ||
punchline | 0 | 7,445,070,602 | 2.4% | ||
adelepazani | 0 | 729,389,648 | 0.72% | ||
r00sj3 | 0 | 4,421,378,442 | 1.2% | ||
sco | 0 | 8,328,054,962 | 30% | ||
ennyta | 0 | 973,705,883 | 50% | ||
juecoree | 0 | 2,477,019,335 | 21% | ||
stahlberg | 0 | 524,306,062 | 1.2% | ||
gabrielatravels | 0 | 654,614,289 | 0.84% | ||
carn | 0 | 1,542,541,083 | 2.16% | ||
branbello | 0 | 1,146,019,910 | 15% | ||
hetty-rowan | 0 | 1,599,722,684 | 1.2% | ||
ydavgonzalez | 0 | 2,424,644,567 | 10% | ||
intrepidphotos | 0 | 6,244,670,366 | 22.5% | ||
fineartnow | 0 | 1,701,376,873 | 1.2% | ||
yoghurt | 0 | 832,592,707 | 2.4% | ||
steemvault | 0 | 924,941,793 | 2.4% | ||
steem4all | 0 | 538,464,940 | 1.2% | ||
communitybank | 0 | 2,016,819,800 | 2.4% | ||
fragmentarion | 0 | 6,033,121,345 | 30% | ||
utube | 0 | 2,103,687,586 | 2.4% | ||
dynamicrypto | 0 | 3,238,380,900 | 1% | ||
neneandy | 0 | 2,748,637,271 | 2.4% | ||
marc-allaria | 0 | 669,517,572 | 1.2% | ||
sportscontest | 0 | 2,566,113,874 | 2.4% | ||
videosteemit | 0 | 533,869,634 | 2.4% | ||
gribouille | 0 | 671,476,498 | 15% | ||
pandasquad | 0 | 5,470,557,768 | 2.4% | ||
kingabesh | 0 | 575,634,441 | 15% | ||
miguelangel2801 | 0 | 780,392,955 | 50% | ||
mproxima | 0 | 811,060,583 | 1.2% | ||
fantasycrypto | 0 | 2,062,053,905 | 2.4% | ||
didic | 0 | 802,975,716 | 1.2% | ||
warpedpoetic | 0 | 805,734,606 | 2.4% | ||
jossduarte | 0 | 739,897,790 | 1.2% | ||
emiliomoron | 0 | 4,535,573,308 | 15% | ||
dexterdev | 0 | 1,199,805,741 | 15% | ||
photohunt | 0 | 1,682,645,942 | 2.4% | ||
geopolis | 0 | 1,948,203,360 | 30% | ||
robertbira | 0 | 3,210,251,573 | 7.5% | ||
alexdory | 0 | 4,019,417,944 | 30% | ||
takowi | 0 | 46,262,785,709 | 2.4% | ||
irgendwo | 0 | 8,281,765,833 | 2.4% | ||
flugschwein | 0 | 1,523,914,682 | 25.5% | ||
cyprianj | 0 | 2,761,816,796 | 2.4% | ||
kieranstone | 0 | 678,174,620 | 0.79% | ||
melvin7 | 0 | 45,912,058,144 | 15% | ||
francostem | 0 | 4,088,423,875 | 30% | ||
russellstockley | 0 | 651,146,933 | 0.6% | ||
endopediatria | 0 | 690,198,227 | 20% | ||
chrislybear | 0 | 11,845,908,812 | 50% | ||
croctopus | 0 | 1,506,969,575 | 100% | ||
jjerryhan | 0 | 841,444,527 | 1.2% | ||
putu300 | 0 | 624,167,854 | 5% | ||
cryptictruth | 0 | 2,579,761,469 | 0.5% | ||
michelmake | 0 | 74,008,456,092 | 50% | ||
amigoponc | 0 | 5,219,695,640 | 100% | ||
zipporah | 0 | 1,151,755,528 | 0.48% | ||
leomarylm | 0 | 740,655,137 | 1.2% | ||
carlosbp | 0 | 1,025,656,600 | 50% | ||
randumb | 0 | 698,730,892 | 2.4% | ||
superlotto | 0 | 7,389,223,056 | 2.4% | ||
miroslavrc | 0 | 970,922,587 | 0.6% | ||
bscrypto | 0 | 6,373,799,640 | 1.2% | ||
vonaurolacu | 0 | 882,909,930 | 1.2% | ||
movingman | 0 | 535,095,275 | 20% | ||
tomastonyperez | 0 | 16,784,744,978 | 50% | ||
bil.prag | 0 | 1,037,059,077 | 0.12% | ||
elvigia | 0 | 10,996,615,450 | 50% | ||
sanderjansenart | 0 | 2,220,052,815 | 1.2% | ||
vittoriozuccala | 0 | 930,356,433 | 1.2% | ||
laxam | 0 | 5,498,518,226 | 100% | ||
qberry | 0 | 1,689,337,224 | 1.2% | ||
hlezama | 0 | 27,821,833,718 | 100% | ||
frissonsteemit | 0 | 512,759,177 | 1.2% | ||
broncofan99 | 0 | 10,561,277,444 | 20% | ||
rambutan.art | 0 | 874,418,535 | 2.4% | ||
flyerchen | 0 | 532,557,543 | 1.2% | ||
braaiboy | 0 | 4,598,214,283 | 1.2% | ||
toronyor | 0 | 510,275,626 | 100% | ||
bateristasvzla | 0 | 1,282,858,930 | 100% | ||
fotogruppemunich | 0 | 1,855,451,082 | 0.6% | ||
therising | 0 | 41,906,520,480 | 2.4% | ||
felixmarranz | 0 | 39,495,333,220 | 100% | ||
cryptocoinkb | 0 | 914,226,191 | 1.2% | ||
scruffy23 | 0 | 20,006,532,139 | 50% | ||
de-stem | 0 | 16,293,690,992 | 29.7% | ||
serylt | 0 | 1,337,689,686 | 29.4% | ||
josedelacruz | 0 | 4,737,814,096 | 50% | ||
lorenzopistolesi | 0 | 4,586,051,134 | 1.2% | ||
kgakakillerg | 0 | 17,613,048,714 | 10% | ||
erickyoussif | 0 | 692,381,222 | 100% | ||
indigoocean | 0 | 498,327,545 | 1.2% | ||
primersion | 0 | 339,525,947,978 | 20% | ||
deholt | 0 | 1,704,181,253 | 25.5% | ||
diabonua | 0 | 2,429,068,721 | 1.2% | ||
minerthreat | 0 | 1,601,278,549 | 1.2% | ||
nateaguila | 0 | 136,979,446,402 | 5% | ||
temitayo-pelumi | 0 | 2,699,313,642 | 30% | ||
andrick | 0 | 848,542,033 | 50% | ||
doctor-cog-diss | 0 | 24,312,706,077 | 30% | ||
marcuz | 0 | 1,020,295,069 | 15% | ||
cooltivar | 0 | 446,336,946 | 0.48% | ||
acont | 0 | 9,551,445,528 | 50% | ||
uche-nna | 0 | 1,744,564,563 | 1.92% | ||
drawmeaship | 0 | 1,233,745,526 | 50% | ||
vietthuy | 0 | 817,180,253 | 50% | ||
citizendog | 0 | 2,211,783,576 | 2.4% | ||
cheese4ead | 0 | 1,916,249,071 | 1.2% | ||
mafufuma | 0 | 7,443,468,329 | 1% | ||
nattybongo | 0 | 60,555,213,608 | 30% | ||
drsensor | 0 | 636,552,369 | 24% | ||
roozeec | 0 | 495,966,358 | 10% | ||
revueh | 0 | 825,406,732 | 15% | ||
ubaldonet | 0 | 2,262,918,520 | 100% | ||
armandosodano | 0 | 4,262,456,793 | 1.2% | ||
acousticguitar | 0 | 14,149,586,304 | 50% | ||
gerdtrudroepke | 0 | 28,820,122,057 | 21% | ||
goblinknackers | 0 | 73,553,710,291 | 7% | ||
anttn | 0 | 12,464,825,211 | 1.2% | ||
bambinaacida | 0 | 2,418,905,299 | 50% | ||
reinaseq | 0 | 7,439,785,036 | 100% | ||
vixmemon | 0 | 700,130,114 | 1.8% | ||
kylealex | 0 | 4,826,891,579 | 10% | ||
orlandogonzalez | 0 | 2,911,326,551 | 25% | ||
fran.frey | 0 | 4,131,533,851 | 50% | ||
perpetuum-lynx | 0 | 887,789,585 | 29.4% | ||
developspanish | 0 | 16,006,692,345 | 50% | ||
thelittlebank | 0 | 8,672,137,453 | 1.2% | ||
pboulet | 0 | 72,181,442,422 | 24% | ||
stem-espanol | 0 | 23,707,643,192 | 100% | ||
voter001 | 0 | 1,529,971,589 | 1.6% | ||
cliffagreen | 0 | 4,946,763,924 | 10% | ||
aleestra | 0 | 12,718,556,510 | 80% | ||
palasatenea | 0 | 1,434,634,660 | 1.2% | ||
the.success.club | 0 | 1,151,644,875 | 1.2% | ||
meanroosterfarm | 0 | 569,929,742 | 15% | ||
merlin7 | 0 | 4,880,454,526 | 2.4% | ||
brianoflondon | 0 | 32,975,770,889 | 0.6% | ||
giulyfarci52 | 0 | 1,688,464,889 | 50% | ||
esthersanchez | 0 | 4,185,970,664 | 60% | ||
kristall97 | 0 | 20,107,093,795 | 100% | ||
steemcryptosicko | 0 | 4,243,292,319 | 0.48% | ||
certain | 0 | 657,579,615 | 0.28% | ||
multifacetas | 0 | 566,803,789 | 1.2% | ||
cakemonster | 0 | 1,636,764,950 | 2.4% | ||
cowpatty | 0 | 600,055,827 | 15% | ||
stem.witness | 0 | 1,752,740,994 | 30% | ||
hiddendragon | 0 | 638,979,910 | 38% | ||
double-negative | 0 | 532,126,891 | 20% | ||
vaultec | 0 | 5,836,722,470 | 12% | ||
steemstorage | 0 | 3,096,843,917 | 2.4% | ||
escuadron201 | 0 | 96,549,984,199 | 100% | ||
jtm.support | 0 | 2,190,286,573 | 30% | ||
crowdwitness | 0 | 63,406,051,358 | 15% | ||
apokruphos | 0 | 14,640,591,739 | 2% | ||
ctime | 0 | 3,682,112,518 | 100% | ||
hairgistix | 0 | 1,361,241,363 | 1.2% | ||
steemean | 0 | 10,091,252,638 | 5% | ||
proxy-pal | 0 | 580,836,608 | 2.4% | ||
thelogicaldude | 0 | 563,698,400 | 0.48% | ||
aaronkroeblinger | 0 | 113,652,030,761 | 50% | ||
dawnoner | 0 | 746,449,278 | 0.24% | ||
photographercr | 0 | 1,116,566,787 | 0.48% | ||
memehub | 0 | 1,201,154,649 | 1.2% | ||
epicdice | 0 | 787,189,141 | 0.72% | ||
iamsaray | 0 | 458,488,757 | 1.2% | ||
robibasa | 0 | 28,464,992,028 | 10% | ||
beerlover | 0 | 883,894,735 | 0.72% | ||
tinyhousecryptos | 0 | 489,204,319 | 5% | ||
rtron86 | 0 | 6,150,913,302 | 50% | ||
tggr | 0 | 540,201,408 | 1.2% | ||
aicu | 0 | 631,589,997 | 2.4% | ||
walterprofe | 0 | 18,741,211,794 | 15% | ||
thesoundof | 0 | 1,740,838,579 | 100% | ||
zeruxanime | 0 | 5,627,484,599 | 15% | ||
afarina46 | 0 | 802,143,741 | 15% | ||
mind.force | 0 | 504,255,597 | 0.6% | ||
kgswallet | 0 | 1,069,048,548 | 20% | ||
nazer | 0 | 1,142,106,997 | 15% | ||
precarious | 0 | 480,900,548 | 50% | ||
steemstem-trig | 0 | 589,154,367 | 30% | ||
baltai | 0 | 2,666,440,856 | 1.2% | ||
dmoonfire | 0 | 31,983,847,313 | 71% | ||
atheistrepublic | 0 | 2,701,328,688 | 1.2% | ||
ibt-survival | 0 | 37,659,871,285 | 10% | ||
zirky | 0 | 1,178,685,222 | 2.04% | ||
lightpaintershub | 0 | 663,081,270 | 1% | ||
bilpcoinbpc | 0 | 800,621,591 | 5% | ||
peterale | 0 | 931,482,334 | 1.2% | ||
hive-127039 | 0 | 487,993,003 | 25% | ||
fsm-core | 0 | 11,649,104,319 | 50% | ||
educationhive | 0 | 638,779,350 | 1.2% | ||
stemsocial | 0 | 235,570,103,257 | 30% | ||
globalcurrencies | 0 | 34,619,942,039 | 100% | ||
the100 | 0 | 536,396,876 | 1.2% | ||
hiveonboard | 0 | 1,377,533,630 | 1.2% | ||
noelyss | 0 | 9,632,655,094 | 15% | ||
balvinder294 | 0 | 815,844,071 | 0.48% | ||
jsalvage | 0 | 626,912,292 | 15% | ||
quinnertronics | 0 | 16,728,557,622 | 7% | ||
gohive | 0 | 10,645,086,958 | 100% | ||
aabcent | 0 | 4,732,987,164 | 1.92% | ||
altleft | 0 | 8,141,809,227 | 0.02% | ||
omarrojas | 0 | 1,068,082,182 | 1.2% | ||
evagavilan2 | 0 | 545,370,773 | 1.2% | ||
apendix1994 | 0 | 3,798,738,105 | 90% | ||
cosplay.hadr | 0 | 501,242,075 | 2.4% | ||
hadrgames | 0 | 516,897,770 | 2.4% | ||
bubblegif | 0 | 22,643,999,110 | 1.2% | ||
meritocracy | 0 | 27,069,386,921 | 0.24% | ||
dcrops | 0 | 14,431,942,696 | 1.2% | ||
traderhive | 0 | 5,471,063,893 | 2.4% | ||
tawadak24 | 0 | 1,059,439,797 | 1.2% | ||
dodovietnam | 0 | 1,450,592,440 | 1.2% | ||
failingforwards | 0 | 1,433,764,918 | 1.2% | ||
drricksanchez | 0 | 6,123,047,204 | 1.2% | ||
trippymane | 0 | 726,105,962 | 2.4% | ||
nfttunz | 0 | 3,921,388,650 | 0.24% | ||
okluvmee | 0 | 1,127,450,424 | 1.2% | ||
atexoras.pub | 0 | 531,020,088 | 1.2% | ||
sarashew | 0 | 1,673,576,462 | 2.4% | ||
podping | 0 | 3,405,352,859 | 0.6% | ||
drhueso | 0 | 574,425,587 | 1.2% | ||
laviesm | 0 | 5,831,197,442 | 50% | ||
seinkalar | 0 | 3,062,438,217 | 2.4% | ||
tanzil2024 | 0 | 1,059,249,989 | 1% | ||
aries90 | 0 | 21,285,908,279 | 2.4% | ||
finch97 | 0 | 16,189,224,385 | 100% | ||
hyun-soo | 0 | 1,238,551,841 | 15% | ||
cugel | 0 | 1,091,896,550 | 1.2% | ||
orangeandwater | 0 | 2,010,504,601 | 100% | ||
rickyuribe | 0 | 6,320,694,950 | 100% | ||
jude9 | 0 | 2,383,611,022 | 7.5% | ||
yixn | 0 | 21,814,905,204 | 1.2% | ||
kqaosphreak | 0 | 2,253,883,931 | 30% | ||
alt3r | 0 | 574,062,711 | 1.84% | ||
waivio.curator | 0 | 1,860,451,032 | 3.44% | ||
ledgar | 0 | 5,883,076,989 | 100% | ||
paula1411 | 0 | 714,965,903 | 100% | ||
simsahas | 0 | 2,202,618,638 | 2.4% | ||
crypt0gnome | 0 | 10,617,005,428 | 0.48% | ||
checkyzk | 0 | 24,465,033,040 | 98% | ||
deadleaf | 0 | 4,187,716,164 | 100% | ||
benwickenton | 0 | 1,123,159,611 | 2.4% | ||
doodleaday | 0 | 36,608,478,681 | 50% | ||
njclabaugh | 0 | 478,139,342 | 100% | ||
drivingindevon | 0 | 698,071,154 | 1.92% | ||
shawnnft | 0 | 4,747,304,204 | 10% | ||
plicc8 | 0 | 2,909,926,492 | 30% | ||
belug | 0 | 649,152,586 | 0.72% | ||
filmmaking4hive | 0 | 904,654,811 | 2.4% | ||
mugueto2022 | 0 | 568,648,932 | 20% | ||
ricardoeloy | 0 | 2,085,672,792 | 6% | ||
windail1 | 0 | 2,062,569,578 | 100% | ||
baboz | 0 | 598,756,399 | 0.6% | ||
soyjoselopez | 0 | 487,624,870 | 20% | ||
sbtofficial | 0 | 2,081,379,229 | 1.2% | ||
criptocuates | 0 | 988,665,896 | 100% | ||
vagabond42069 | 0 | 613,130,099 | 15% | ||
mortsanchezzz | 0 | 2,274,552,528 | 100% | ||
inibless | 0 | 1,649,017,349 | 15% | ||
gaskets | 0 | 278,512,293 | 100% | ||
daje10 | 0 | 20,056,709,071 | 50% | ||
smariam | 0 | 2,489,518,001 | 25% | ||
hive-fr | 0 | 98,758,639,739 | 30% | ||
minas-glory | 0 | 1,496,310,717 | 1.2% | ||
clpacksperiment | 0 | 1,302,766,142 | 1.2% | ||
the-grandmaster | 0 | 1,525,758,880 | 1.2% | ||
the-burn | 0 | 1,526,630,264 | 1.2% | ||
abu78 | 0 | 3,004,584,046 | 10.5% | ||
reverio | 0 | 1,278,581,761 | 5% | ||
ayamihaya | 0 | 9,328,308,148 | 50% | ||
hive-fr-engine | 0 | 1,693,631,707 | 30% | ||
hivecar | 0 | 556,094,566 | 30% | ||
laro-racing | 0 | 2,311,271,843 | 0.72% |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-rafaelaquino-curso-de-linux-n14-programacion-en-bash-001-variables-argumentos-shift-comentarios-palabras-reservadas-20230913t111843349z |
category | hive-154226 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-09-13 11:18:42 |
last_update | 2023-09-13 11:18:42 |
depth | 1 |
children | 0 |
last_payout | 2023-09-20 11:18:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 565 |
author_reputation | 22,918,491,691,707 |
root_title | "Curso de Linux N14. Programación en Bash 001: Variables, argumentos, shift, comentarios, palabras reservadas" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 127,107,531 |
net_rshares | 0 |