write in a file linux command code example
Example 1: write in a file linux
sudo apt-get update
sudo apt install nano
nano <filename>
Example 2: linux write
# Linux - Bash
#syntax
# echo -e "*<string-to-append>" >> *<file-name>
# example
echo -e "aaa" >> test_1.txt