Q. Can you specify rules for naming a file name under Linux?
A. When you save a data, you nee to select a file name, you need to follow certain rules and regulation regarding the length of the name and the types of characters you include.
Rules for naming file names
The rules for naming a file names under Linux (and UNIX like oses) are as follows:
[a] The file names can be up to 255 characters (or bytes) long
[b] You cannot use all special characters, try to use:
=> Uppercase or lowercase letters
=> Digits
=> Special characters, such as: +, -, _, .
[c] File names are case-sensitive. Thus, the following file names all are different:
vivek Vivek VIVEK VIVek
[d] Try to avoid non printable and following characters in filenames:
/, >, <, ?, ", ', blank space
How do I show hidden files?
Use ls -a or ls -la command:
$ ls -la
$ ls -a
Use -a to see invisible file names.
How do I access filenames with spaces?
To access a filename with spaces, enclose the filename in quotes:
$ cat "my bio data.txt"
$ cd "a long dir nane"
Please note that above rules almost apply to other UNIX like operating system such as HP-UX, Solaris, FreeBSD etc.
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 2 comments… read them below or add one }
file name in linux ends with ~.
plz clarufy
But where the file name is stored? I mean, in the inode, repertory?