Create a new file called hello.sh with the following content and give it executable permissions with chmod +x hello.sh.

Execute/Run via: ./hello.sh

#!/usr/bin/env bash
whom_variable="World" printf "Hello, %s\n" "$whom_variable"


Note:

# The spaces cannot be used around the `=` assignment operator
# Use printf to safely output the data

Hjälpte svaret dig? 0 användare blev hjälpta av detta svar (0 Antal röster)