Yes, echo can be used with variables in Bash. You can display the value of a variable by using the $ symbol before the variable name. Here's a simple example:
name="Linux"
echo "Hello, $name"
In this example, echo will output "Hello, Linux" because it substitutes the value of the variable name.
If you have more questions or need further examples, feel free to ask!
