Need to print full path of a folder which is from terminal which is not the current directory. For example /media/hardDrive/Music folder has three sub-directories Album_1 Album_2 Album_3.
/media/hardDrive/Music $ ls
Album_1 Album_2 Album_3
Need a command (CMD) that prints full path of a given folder from the current directory without needing to append the directory to the output of pwd.
/media/hardDrive/Music $ CMD Album_1
/media/hardDrive/Music/Album_1
pwd?pwdwill print the current directory. Like in example, it will print/media/hardDrive/Music/. I need to print the subdirectories without changing current working directory.