what are . and .. directories?


 
Thread Tools Search this Thread
Operating Systems Solaris what are . and .. directories?
# 1  
Old 06-16-2011
what are . and .. directories?

what are . and .. directories? it is see every where when i try to view hidden files using ls command. Whats its purpose. Even when i create a directory and try to view hidden files in that directory i can see these . and .. directories.Smilie
# 2  
Old 06-16-2011
Welcome to Unix.

. is a link to the current directory and .. the parent directory

try
Code:
cd ../

now
Code:
ls ./

# 3  
Old 06-16-2011
is it a type of file? if so when i try rm -rf .. it doesnot show any error as if it removed it successfuly. but when i type ls -a it again shows up. i know cd .. will take you to parent directory of current dir.

Code:
# ls -al | more
total 157250
drwxrwxrwt  10 root     sys         1536 Jun 16 19:45 .
drwxr-xr-x  46 root     sys         1024 Oct 21  2010 ..

This is the permissions of those files.
# 4  
Old 06-16-2011
Why do you think cd .. takes you up a directory?

What happens if you are in /export/home/chidori and you type

Code:
cd ../../

and why ?

How could you delete a resource that is in use,?

try removing .. / in bash, /bin/sh is a slightly cryptic shell for a novice.
This User Gave Thanks to Skrynesaver For This Post:
# 5  
Old 06-16-2011
those are only needed for "navigation" into your directory/filesystem.
(single dot) stands for the current directory.
(double dot) stands for the parent directory of the actual working directory.

Example:
Code:
 
/export/home/user1 (the double dot / or parent) directory is /export/home

If your working directory is /export/home/user1 and you would like to change on level higher you can use the double dot instead of the full path.
Example:
Code:
[root@saxmgt01 user1]# pwd (print working directory)
/export/home/user1

[root@saxmgt01 user1]# cd /export/home/
[root@saxmgt01 home]# pwd
/export/home

is the same as:
[root@saxmgt01 user1]# pwd
/export/home/user1
[root@saxmgt01 user1]# cd ..
[root@saxmgt01 home]# pwd
/export/home

This User Gave Thanks to beta17 For This Post:
# 6  
Old 06-16-2011
Okay thanks to all... but now do you mean this file is linked to some other file? so can i tweak some file which can change the meaning
Code:
. which means currect dir
.. which means parent dir

# 7  
Old 06-16-2011
. and .. are not files and not links. Take a look at the output of ls -ld ./ ../. They're both prefixed by a 'd', which means they are directories.

The idea behind this is: each directory has a list of files, directories, ... it contains (the directory index). This index always includes 2 entries: 1 pointing to the current directory, and one pointing to the parent directory. And it's important that they are there, because it makes path traversal independent from the program and moves the responsibility to the system, and ensures that all programs can traverse the path upwards in the same manner.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Giving read write permission to user for specific directories and sub directories.

I have searched this quite a long time but couldn't find the right method for me to use. I need to assign read write permission to the user for specific directories and it's sub directories and files. I do not want to use ACL. This is for Solaris. Please help. (1 Reply)
Discussion started by: blinkingdan
1 Replies

2. Shell Programming and Scripting

Archiving and moving files into directories, creating directories, etc.

how can i move "dataName".sql.gz into a folder called 'database' and then move "$fileName".tar.gz * .htaccess into a folder called 'www' with the entire gzipped file being "$fileName".tar.gz? Is this doable or overly complex. so mydemo--2015-03-23-1500.tar.gz > database -... (5 Replies)
Discussion started by: wyclef
5 Replies

3. UNIX for Dummies Questions & Answers

List the directories, having given pattern in the directories name, sorted by creation date

It is for HP-Unix B.11.31. Requirement: 1. List the directories, having given pattern in the directories name, sorted by creation date. Example: Directories with name "pkg32*" or "pkg33*" 2. On the output of 1. list the directories by creation date as sort order, with creation date... (2 Replies)
Discussion started by: Siva SQL
2 Replies

4. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

5. UNIX for Dummies Questions & Answers

Using grep command to find the pattern of text in all directories and sub-directories.

Hi all, Using grep command, i want to find the pattern of text in all directories and sub-directories. e.g: if i want to search for a pattern named "parmeter", i used the command grep -i "param" ../* is this correct? (1 Reply)
Discussion started by: vinothrajan55
1 Replies

6. UNIX for Dummies Questions & Answers

List directories and sub directories recursively excluding files

Hi, Please help me, how to get all the direcotries, its sub directories and its sub directories recursively, need to exclude all the files in the process. I wanted to disply using a unix command all the directories recursively excluding files. I tried 'ls -FR' but that display files as... (3 Replies)
Discussion started by: pointers
3 Replies

7. Shell Programming and Scripting

How to list all the directories, sub directories in a mount along with size in ascending order?

Hi , I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In a particular mount, have to list all the directories and sub directories along with size of the directory and sub directory in ascending order. Please help me in this regard and many... (4 Replies)
Discussion started by: nmakkena
4 Replies

8. Shell Programming and Scripting

Script for parsing directories one level and finding directories older than n days

Hello all, Here's the deal...I have one directory with many subdirs and files. What I want to find out is who is keeping old files and directories...say files and dirs that they didn't use since a number of n days, only one level under the initial dir. Output to a file. A script for... (5 Replies)
Discussion started by: ejianu
5 Replies

9. Shell Programming and Scripting

check if multiple directories exist else create missing directories

Hi , I 'm trying to check if multiple directories exist on a server, if not create the missing ones and print " creating missing directory. how to write this in a simple script, I have made my code complex if ; then taskStatus="Schema extract directory exists, checking if SQL,Count and... (7 Replies)
Discussion started by: ramky79
7 Replies
Login or Register to Ask a Question