talleres-bash/taller1/scripts/03.sh

6 lines
96 B
Bash
Raw Normal View History

2024-04-17 21:50:31 +02:00
#!/bin/bash
greeting=Pablo
echo 'Hello $greeting'
echo "Hello $greeting"
echo "Hello $(whoami)"