![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Hidden control characters in a Unix Text File! | kewl_guy | Shell Programming and Scripting | 6 | 1 Week Ago 10:09 AM |
| Finding Hidden files and protecting the folder containing hidden files from deletion | pochaw | Shell Programming and Scripting | 4 | 12-21-2007 09:33 PM |
| How to make a file Hidden | gandhevinod | Filesystems, Disks and Memory | 1 | 02-15-2005 10:24 AM |
| Make a Hidden File | gandhevinod | UNIX Desktop for Dummies Questions & Answers | 1 | 02-15-2005 08:59 AM |
| File and Directory Names become hidden | dbinsol1 | UNIX for Advanced & Expert Users | 10 | 05-29-2002 06:58 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
How to check for hidden file
Hi All,
Is there hidden files somewhere here since it's showing "total 16", but no files being revealed ? $ ls -la total 16 8 drwxrwxrwx 2 zzz yyy 4096 Apr 26 12:00 ./ 8 drwxrwxrwx 9 zzz yyy 4096 Jul 31 16:59 ../ $ |
| Forum Sponsor | ||
|
|
|
|||
|
the hidden files start with a . like
.raynon .asdf .dfhg these are hidden files.If you want to see this you have to put ls -al it will show u all the files including the hidden files. But the first two lines that is ./ ../ they shows the link to current directory and the parent directory respectively.when we create a directory these two links are created automatically. total 16 means the directory is taking 16 blocks of memory. Thanks Namish |
|
||||
|
Quote:
|