how to edit a text file terminal code example
Example 1: edit text file bash
sudo nano file.text
Example 2: how to save a text file with a terminal command
echo "insert text here" > filename.txt
sudo nano file.text
echo "insert text here" > filename.txt