terminal
user@localhost
~
Welcome to the terminal interface
Type help for available commands
user@localhost
:~$
ls -la
total 24
drwxr-xr-x 5 user user 4096 Jan 12 14:32 .
drwxr-xr-x 3 user user 4096 Jan 10 11:20 ..
-rw-r--r-- 1 user user 124 Jan 11 09:45 .bashrc
-rw-r--r-- 1 user user 22 Jan 11 09:45 .profile
drwxr-xr-x 2 user user 4096 Jan 12 14:32 Documents
drwxr-xr-x 2 user user 4096 Jan 12 14:32 Downloads
user@localhost
:~$
cd Documents
Directory changed to /home/user/Documents
user@localhost
:~/Documents$
touch newfile.txt
File 'newfile.txt' created
user@localhost
:~/Documents$
cat newfile.txt
This is a new file created in the Documents directory.
user@localhost
:~/Documents$
echo "Hello World" > hello.txt
13 bytes written to 'hello.txt'
user@localhost
:~/Documents$
history
1 ls -la
2 cd Documents
3 touch newfile.txt
4 cat newfile.txt
5 echo "Hello World" > hello.txt
user@localhost
:~/Documents$