---
layout: page
category-page: fs
category-title: FileSystem
tags: working directory current position where
author: Mirko Ponzio
title: pwd
---
The command pwd
(abbreviation of print working directory, it returns the
corrent directory) it is a command, that show the absolute pathname on the corrent directory.
The working directory is the directory where you are standing in. So for
knowing where you are, you can use the pwd command.
cd /home/user pwd = /home/user
-P
Show the working directory path without symbolic link (links to
folder).pwd -P
will display /home/photos.
-L
Show the working directory logical path with symbolic link.pwd -L
will show /home/symphoto.
pwd -L
.