Advertisement
josemld

mi_mascota

Mar 8th, 2024 (edited)
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | Source Code | 0 0
  1. #!/bin/bash
  2. # Este script va a mostar el Tipo de tu Mascosta y su Nombre
  3.  
  4. MASCOTA="Gato"
  5.  
  6. NOMBRE_MASCOTA="Daniel"
  7.  
  8. nueva_linea="\n"
  9.  
  10. echo -e "Mi mascota es un(a) $MASCOTA"
  11.  
  12. echo -e "$nueva_linea""y su nombre es $NOMBRE_MASCOTA."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement