Sponsored Content
Full Discussion: How to check for hidden file
Top Forums Shell Programming and Scripting How to check for hidden file Post 302135017 by namishtiwari on Wednesday 5th of September 2007 06:06:10 AM
Old 09-05-2007
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
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

File and Directory Names become hidden

Something very weird has been happening when I'm creating files and directories. When I create a directory, at times depending on the directory name and depth, it becomes hidden and can only be seen typing "ls -a". When I say the name of the directory matters, "my_c++" will be hidden but using... (10 Replies)
Discussion started by: dbinsol1
10 Replies

2. UNIX Desktop Questions & Answers

Make a Hidden File

How to make a file Hidden whose name does not starts with . (dot) (sorry i am beginner) (1 Reply)
Discussion started by: gandhevinod
1 Replies

3. Filesystems, Disks and Memory

How to make a file Hidden

Please tell me how to make a file hidden whose name is not starting with (.) dot ( Sorry I am Biginer) (1 Reply)
Discussion started by: gandhevinod
1 Replies

4. Shell Programming and Scripting

change file type to hidden using chmod command

I want to make a hidden file with chmod command. Example: I have a file name inputfile.txt -rw-r--r-- 1 xxxxxx xxxxxx 1388 Sep 12 05:41 inputfile.txt I want to hide that file using chmod command. Please tell me if it is possible or there is some other way to do this. Thanks... (2 Replies)
Discussion started by: rinku
2 Replies

5. Shell Programming and Scripting

Finding Hidden files and protecting the folder containing hidden files from deletion

Hi. I have a script which is deleting files with a particular extension and older than 45 days.The code is: find <path> -name "<filename_pattern>" -mtime +45 -exec rm {} \; But the problem is that some important files are also getting deleted.To prevent this I have decide to make a dummy... (4 Replies)
Discussion started by: pochaw
4 Replies

6. UNIX for Dummies Questions & Answers

Locating a hidden file

it seems one of my server's account was compromised. I caught a perl script running a hack/attack script: 20:23 /usr/bin/perl ./up **.**.**.** 0 120 I've disabled the user etc, but I cannot find the script "up" anywhere in the server. I tried using locate or find. any ideas? (1 Reply)
Discussion started by: MaRiOsGR
1 Replies

7. UNIX for Dummies Questions & Answers

List all directories hidden or not hidden

I want to list all directories hidden or not hidden. ls -ld */ => shows only not hidden directories so i guess the answer would be to add the a option to show all files ls -lad */ => not working :confused: ls -la | grep "^d" => works But I would like to know why I can't use ls -lad... (4 Replies)
Discussion started by: servus
4 Replies

8. Programming

Perl scripting help for hidden file

Hi There, Can anyone please let me know, how to write hidden file in perl? I tried opning hidden file in write mode but its failing to create it. Appreciate your help in this. Thanks (1 Reply)
Discussion started by: ps_tech
1 Replies

9. Shell Programming and Scripting

Rsync - how to copy hidden folder or hidden files when using full path

Hello. I use this command : rsync -av --include=".*" --dry-run "$A_FULL_PATH_S" "$A_FULL_PATH_D"The data comes from the output of a find command. And no full source directories are in use, only some files. Source example... (2 Replies)
Discussion started by: jcdole
2 Replies
ncdu(1) 							    ncdu manual 							   ncdu(1)

NAME
ncdu - NCurses Disk Usage SYNOPSIS
ncdu [-hqvx] [--exclude PATTERN] [-X FILE] dir DESCRIPTION
ncdu (NCurses Disk Usage) is a curses-based version of the well-known 'du', and provides a fast way to see what directories are using your disk space. OPTIONS
-h Print a small help message -q Quiet mode. While calculating disk space, ncdu will update the screen 10 times a second by default, this will be decreased to once every 2 seconds in quiet mode. Use this feature to save bandwidth over remote connections. -r Read-only mode. This will disable the built-in file deletion feature. -v Print version. -x Only count files and directories on the same filesystem as the specified dir. --exclude PATTERN Exclude files that match PATTERN. This argument can be added multiple times to add more patterns. -X FILE, --exclude-from FILE Exclude files that match any pattern in FILE. Patterns should be separated by a newline. KEYS
? Show help + keys + about screen up, down j, k Cycle through the items right, enter, l Open selected directory left, <, h Go to parent directory n Order by filename (press again for descending order) s Order by filesize (press again for descending order) a Toggle between showing disk usage and showing apparent size. d Delete the selected file or directory. An error message will be shown when the contents of the directory do not match or do not exist anymore on the filesystem. t Toggle dirs before files when sorting. g Toggle between showing percentage, graph, both, or none. Percentage is relative to the size of the current directory, graph is rela- tive to the largest item in the current directory. e Show/hide 'hidden' or 'excluded' files and directories. Please note that even though you can't see the hidden files and directories, they are still there and they are still included in the directory sizes. If you suspect that the totals shown at the bottom of the screen are not correct, make sure you haven't enabled this option. i Show information about the current selected item. r Refresh/recalculate the current directory. q Quit HARD LINKS
Every disk usage analysis utility has its own way of (not) counting hard links. There does not seem to be any universally agreed method of handling hard links, and it is even inconsistent among different versions of ncdu. This section explains what each version of ncdu does. ncdu 1.5 and below does not support any hard link detection at all: each link is considered a separate inode and its size is counted for every link. This means that the displayed directory sizes are incorrect when analyzing directories which contain hard links. ncdu 1.6 has basic hard link detection: When a link to a previously encountered inode is detected, the link is considered to have a file size of zero bytes. Its size is not counted again, and the link is indicated in the browser interface with a 'H' mark. The displayed directory sizes are only correct when all links to an inode reside within that directory. When this is not the case, the sizes may or may not be correct, depending on which links were considered as "duplicate" and which as "original". The indicated size of the topmost direc- tory (that is, the one specified on the command line upon starting ncdu) is always correct. ncdu 1.7 has improved hard link detection. Each file that has more than two links has the "H" mark visible in the browser interface. Each hard link is counted exactly once for every directory it appears in. The indicated size of each directory is therefore, correctly, the sum of the sizes of all unique inodes that can be found in that directory. Note, however, that this may not always be same as the space that will be reclaimed after deleting the directory, as some inodes may still be accessible from hard links outside it. BUGS
Directory hard links are not supported. They will not be detected as being hard links, and will thus be scanned and counted multiple times. Some minor glitches may appear when displaying filenames that contain multibyte or multicolumn characters. Please report any other bugs you may find at the bug tracker, which can be found on the web site at http://dev.yorhel.nl/ncdu AUTHOR
Written by Yoran Heling <projects@yorhel.nl>. SEE ALSO
du(1) ncdu-1.8 Nov 3, 2011 ncdu(1)
All times are GMT -4. The time now is 09:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy