Answers for "bash echo"

3

echo -n bash

echo(1) - display a line of text
Echo the STRING(s) to standard output.
-n    do not output the trailing newline
Posted by: Guest on March-18-2020
0

bash echo

# echo script vars
echo "outputString"
varToPrint=10
echo $varToPrint

# echo files
echo * # all
echo *.png # all pngs
echo specificFile.txt
Posted by: Guest on June-29-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language