Hidden files

From Linuxintro
Revision as of 08:45, 16 June 2012 by imported>ThorstenStaerk (Created page with "Hidden files under Linux are files that start with a dot. They are not included when using the * operator in bash: # ls .hidden a.out datei main.cpp # ls * a.out date...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Hidden files under Linux are files that start with a dot. They are not included when using the * operator in bash:

# ls
.hidden  a.out  datei  main.cpp
# ls *
a.out  datei  main.cpp