Difference between revisions of "Hidden files"

From Linuxintro
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...")
(No difference)

Revision as of 08:45, 16 June 2012

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