delete file in directory linux code example
Example 1: how to remove file from directory in linux
rm /home/harry/ascii.txt
Example 2: how to delete files in linux
rm <file> .. rm -r <file> .. r stands for recursive
rm /home/harry/ascii.txt
rm <file> .. rm -r <file> .. r stands for recursive