https://drive.google.com/file/d/1IN5XNJTBNoxs35yDyn6bJYska_cSu-3g/view?usp=sharing
Linux treats uppercase and lowercase letters as completely different characters. This means File.txt, file.txt, and FILE.TXT are three distinct files.
touch Linux # Creates a file named "Linux"
touch linux # Creates a different file named "linux"
ls -li # Lists files with inode numbers to show they're separate
Open a terminal.
Run:
touch Linux linux LINUX
ls -li
Observe that three separate files are created with different inode numbers.
In Linux, everything is treated as a file, including: