Does cd . have use?












94















One of the tutorials I've been following briefly stated that cd . has no use. When trying to replicate issue shown by OP in Symbolic link recursion - what makes it “reset”?, I also tried cd ., which showed the same effect OP described (growing $PWD variable), which can be countered with cd -P.



This makes me wonder, is there any case where one does in fact would want to use cd . ?










share|improve this question


















  • 19





    I have a custom .zshrc that runs various checks on the directory when switching directory, for example one of the check is to automatically activate/deactivate a matching virtualenv when moving directories. Occasionally, I might start a new shell or whatever, and those checks don't run, and I usually use cd . to trigger those checks because it's short and simple. Though I think you intended the question to be for a vanilla environment.

    – Lie Ryan
    Jan 22 at 6:46






  • 27





    Besides the (obvious) effect on $PWD, cd . also changes $OLDPWD to the current directory. I have (currently) no idea why this might be useful, but for the sake of completeness…

    – Andreas Wiese
    Jan 22 at 22:44






  • 5





    I don't think I've ever needed cd ., though seeing the answers below, I might in the future, but I have on occasion used pushd . when I wanted to be able to popd back to this directory later. e.g. when running a build script that does configure, cd output... and make, and when it's done I'll want to go back to the original directory. Rather than maintaining my own copy of the buildscript that's different than what everyone else expects, I just run it as pushd .; ./BuildScriptName.sh; popd, and this also gives me the freedom to not popd sometimes, and then popd later instead.

    – 3D1T0R
    Jan 23 at 0:47






  • 5





    Not to mention of course that '.' and '..' are not implemented in the cd command itself, so no-one set out to make that specific feature, it's just a combination of things that serves no real purpose.

    – David S
    Jan 23 at 14:48






  • 1





    @ruakh Nope, external programs should not affect shell execution environment. It's mostly for POSIX compliance which requires some of the utilities to exist outside of the shell, and evaluating exit status of external commands. You can read about the purpose of /bin/cd here unix.stackexchange.com/q/50058/85039

    – Sergiy Kolodyazhnyy
    Jan 25 at 7:18
















94















One of the tutorials I've been following briefly stated that cd . has no use. When trying to replicate issue shown by OP in Symbolic link recursion - what makes it “reset”?, I also tried cd ., which showed the same effect OP described (growing $PWD variable), which can be countered with cd -P.



This makes me wonder, is there any case where one does in fact would want to use cd . ?










share|improve this question


















  • 19





    I have a custom .zshrc that runs various checks on the directory when switching directory, for example one of the check is to automatically activate/deactivate a matching virtualenv when moving directories. Occasionally, I might start a new shell or whatever, and those checks don't run, and I usually use cd . to trigger those checks because it's short and simple. Though I think you intended the question to be for a vanilla environment.

    – Lie Ryan
    Jan 22 at 6:46






  • 27





    Besides the (obvious) effect on $PWD, cd . also changes $OLDPWD to the current directory. I have (currently) no idea why this might be useful, but for the sake of completeness…

    – Andreas Wiese
    Jan 22 at 22:44






  • 5





    I don't think I've ever needed cd ., though seeing the answers below, I might in the future, but I have on occasion used pushd . when I wanted to be able to popd back to this directory later. e.g. when running a build script that does configure, cd output... and make, and when it's done I'll want to go back to the original directory. Rather than maintaining my own copy of the buildscript that's different than what everyone else expects, I just run it as pushd .; ./BuildScriptName.sh; popd, and this also gives me the freedom to not popd sometimes, and then popd later instead.

    – 3D1T0R
    Jan 23 at 0:47






  • 5





    Not to mention of course that '.' and '..' are not implemented in the cd command itself, so no-one set out to make that specific feature, it's just a combination of things that serves no real purpose.

    – David S
    Jan 23 at 14:48






  • 1





    @ruakh Nope, external programs should not affect shell execution environment. It's mostly for POSIX compliance which requires some of the utilities to exist outside of the shell, and evaluating exit status of external commands. You can read about the purpose of /bin/cd here unix.stackexchange.com/q/50058/85039

    – Sergiy Kolodyazhnyy
    Jan 25 at 7:18














94












94








94


11






One of the tutorials I've been following briefly stated that cd . has no use. When trying to replicate issue shown by OP in Symbolic link recursion - what makes it “reset”?, I also tried cd ., which showed the same effect OP described (growing $PWD variable), which can be countered with cd -P.



This makes me wonder, is there any case where one does in fact would want to use cd . ?










share|improve this question














One of the tutorials I've been following briefly stated that cd . has no use. When trying to replicate issue shown by OP in Symbolic link recursion - what makes it “reset”?, I also tried cd ., which showed the same effect OP described (growing $PWD variable), which can be countered with cd -P.



This makes me wonder, is there any case where one does in fact would want to use cd . ?







cd-command






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 22 at 4:12









Sergiy KolodyazhnyySergiy Kolodyazhnyy

9,95532659




9,95532659








  • 19





    I have a custom .zshrc that runs various checks on the directory when switching directory, for example one of the check is to automatically activate/deactivate a matching virtualenv when moving directories. Occasionally, I might start a new shell or whatever, and those checks don't run, and I usually use cd . to trigger those checks because it's short and simple. Though I think you intended the question to be for a vanilla environment.

    – Lie Ryan
    Jan 22 at 6:46






  • 27





    Besides the (obvious) effect on $PWD, cd . also changes $OLDPWD to the current directory. I have (currently) no idea why this might be useful, but for the sake of completeness…

    – Andreas Wiese
    Jan 22 at 22:44






  • 5





    I don't think I've ever needed cd ., though seeing the answers below, I might in the future, but I have on occasion used pushd . when I wanted to be able to popd back to this directory later. e.g. when running a build script that does configure, cd output... and make, and when it's done I'll want to go back to the original directory. Rather than maintaining my own copy of the buildscript that's different than what everyone else expects, I just run it as pushd .; ./BuildScriptName.sh; popd, and this also gives me the freedom to not popd sometimes, and then popd later instead.

    – 3D1T0R
    Jan 23 at 0:47






  • 5





    Not to mention of course that '.' and '..' are not implemented in the cd command itself, so no-one set out to make that specific feature, it's just a combination of things that serves no real purpose.

    – David S
    Jan 23 at 14:48






  • 1





    @ruakh Nope, external programs should not affect shell execution environment. It's mostly for POSIX compliance which requires some of the utilities to exist outside of the shell, and evaluating exit status of external commands. You can read about the purpose of /bin/cd here unix.stackexchange.com/q/50058/85039

    – Sergiy Kolodyazhnyy
    Jan 25 at 7:18














  • 19





    I have a custom .zshrc that runs various checks on the directory when switching directory, for example one of the check is to automatically activate/deactivate a matching virtualenv when moving directories. Occasionally, I might start a new shell or whatever, and those checks don't run, and I usually use cd . to trigger those checks because it's short and simple. Though I think you intended the question to be for a vanilla environment.

    – Lie Ryan
    Jan 22 at 6:46






  • 27





    Besides the (obvious) effect on $PWD, cd . also changes $OLDPWD to the current directory. I have (currently) no idea why this might be useful, but for the sake of completeness…

    – Andreas Wiese
    Jan 22 at 22:44






  • 5





    I don't think I've ever needed cd ., though seeing the answers below, I might in the future, but I have on occasion used pushd . when I wanted to be able to popd back to this directory later. e.g. when running a build script that does configure, cd output... and make, and when it's done I'll want to go back to the original directory. Rather than maintaining my own copy of the buildscript that's different than what everyone else expects, I just run it as pushd .; ./BuildScriptName.sh; popd, and this also gives me the freedom to not popd sometimes, and then popd later instead.

    – 3D1T0R
    Jan 23 at 0:47






  • 5





    Not to mention of course that '.' and '..' are not implemented in the cd command itself, so no-one set out to make that specific feature, it's just a combination of things that serves no real purpose.

    – David S
    Jan 23 at 14:48






  • 1





    @ruakh Nope, external programs should not affect shell execution environment. It's mostly for POSIX compliance which requires some of the utilities to exist outside of the shell, and evaluating exit status of external commands. You can read about the purpose of /bin/cd here unix.stackexchange.com/q/50058/85039

    – Sergiy Kolodyazhnyy
    Jan 25 at 7:18








19




19





I have a custom .zshrc that runs various checks on the directory when switching directory, for example one of the check is to automatically activate/deactivate a matching virtualenv when moving directories. Occasionally, I might start a new shell or whatever, and those checks don't run, and I usually use cd . to trigger those checks because it's short and simple. Though I think you intended the question to be for a vanilla environment.

– Lie Ryan
Jan 22 at 6:46





I have a custom .zshrc that runs various checks on the directory when switching directory, for example one of the check is to automatically activate/deactivate a matching virtualenv when moving directories. Occasionally, I might start a new shell or whatever, and those checks don't run, and I usually use cd . to trigger those checks because it's short and simple. Though I think you intended the question to be for a vanilla environment.

– Lie Ryan
Jan 22 at 6:46




27




27





Besides the (obvious) effect on $PWD, cd . also changes $OLDPWD to the current directory. I have (currently) no idea why this might be useful, but for the sake of completeness…

– Andreas Wiese
Jan 22 at 22:44





Besides the (obvious) effect on $PWD, cd . also changes $OLDPWD to the current directory. I have (currently) no idea why this might be useful, but for the sake of completeness…

– Andreas Wiese
Jan 22 at 22:44




5




5





I don't think I've ever needed cd ., though seeing the answers below, I might in the future, but I have on occasion used pushd . when I wanted to be able to popd back to this directory later. e.g. when running a build script that does configure, cd output... and make, and when it's done I'll want to go back to the original directory. Rather than maintaining my own copy of the buildscript that's different than what everyone else expects, I just run it as pushd .; ./BuildScriptName.sh; popd, and this also gives me the freedom to not popd sometimes, and then popd later instead.

– 3D1T0R
Jan 23 at 0:47





I don't think I've ever needed cd ., though seeing the answers below, I might in the future, but I have on occasion used pushd . when I wanted to be able to popd back to this directory later. e.g. when running a build script that does configure, cd output... and make, and when it's done I'll want to go back to the original directory. Rather than maintaining my own copy of the buildscript that's different than what everyone else expects, I just run it as pushd .; ./BuildScriptName.sh; popd, and this also gives me the freedom to not popd sometimes, and then popd later instead.

– 3D1T0R
Jan 23 at 0:47




5




5





Not to mention of course that '.' and '..' are not implemented in the cd command itself, so no-one set out to make that specific feature, it's just a combination of things that serves no real purpose.

– David S
Jan 23 at 14:48





Not to mention of course that '.' and '..' are not implemented in the cd command itself, so no-one set out to make that specific feature, it's just a combination of things that serves no real purpose.

– David S
Jan 23 at 14:48




1




1





@ruakh Nope, external programs should not affect shell execution environment. It's mostly for POSIX compliance which requires some of the utilities to exist outside of the shell, and evaluating exit status of external commands. You can read about the purpose of /bin/cd here unix.stackexchange.com/q/50058/85039

– Sergiy Kolodyazhnyy
Jan 25 at 7:18





@ruakh Nope, external programs should not affect shell execution environment. It's mostly for POSIX compliance which requires some of the utilities to exist outside of the shell, and evaluating exit status of external commands. You can read about the purpose of /bin/cd here unix.stackexchange.com/q/50058/85039

– Sergiy Kolodyazhnyy
Jan 25 at 7:18










11 Answers
11






active

oldest

votes


















151














I think this is overthinking the problem. cd . may not be something that one would manually run in the usual course of things, but it definitely is something that can come up in programmatic execution (think of any situation where you might cd to the directory containing a file, whose path is supplied by the user). Therefore, it doesn't have to have some specific use: as long as it fulfills the usual semantics of cd <some-path>, it is useful.






share|improve this answer



















  • 11





    Agreed, . should be treated as a valid path specified by cd syntax just fine.

    – Sergiy Kolodyazhnyy
    Jan 22 at 4:52






  • 17





    You can add the following example: Loops like while IFS= read Dir; do cd "$Dir"; do_something; done < <(find . -type d). During its course, find produces . as path, so that the command cd "$Dir" expands to cd .. So, in scripts, it is perfectly useful.

    – rexkogitans
    Jan 22 at 9:43






  • 1





    @rexkogitans your illustration is clear but the code would fail on its second iteration. You would need to put the cd and subsequent code in a subshell so that the relative directory path remained relative to the starting point rather than to the previous iteration.

    – roaima
    Jan 22 at 11:39






  • 5





    For example, a script actually runs cd ${path_to_directory}, but at some point it turns out the directory is the current directory, and path_to_directory = . so you would need cd . to work just in case.

    – Demis
    Jan 23 at 7:46






  • 4





    In other words, its utility is in the fact that it makes extra code (if checks and else clauses, any kind of special casing) unnecessary.

    – jpmc26
    Jan 24 at 18:27





















124














The path of the directory could have changed since the last command was executed, and without cd . the bash and ksh93 shells will rely on the logical working directory described in the post linked in the question, so calling cd . which makes the shell issue the getcwd() syscall will ensure your current path is still valid.



Steps to reproduce in bash:




  1. In a terminal tab issue mkdir ./dir_no_1; cd ./dir_no_1

  2. In a different terminal tab issue mv dir_no_1 dir_no_2

  3. In the first terminal tab issue echo $PWD and pwd. Notice that the directory has been externally renamed; the shell's environment has not been updated.

  4. Issue cd .; pwd; echo $PWD. Notice the value has been updated.


ksh93, however, does not update the environment information, so cd . in ksh93 may in fact be useless. In /bin/dash on Ubuntu and other Debian-based systems, cd . returns dash: 3: cd: can't cd to . error, however cd -P . works (unlike in ksh93).






share|improve this answer





















  • 20





    Good to know: I'll add that to my list of useless informations. ^^)

    – jayooin
    Jan 22 at 6:39






  • 10





    @jayooin Glad I could contribute to the list ;)

    – Sergiy Kolodyazhnyy
    Jan 22 at 7:53






  • 8





    I think you can do mv ../dir_no_1 ../dir_no_2 in the same terminal/bash.

    – ctrl-alt-delor
    Jan 22 at 9:00






  • 3





    @ctrl-alt-delor Confirmed, works :)

    – Sergiy Kolodyazhnyy
    Jan 22 at 9:12






  • 1





    @ymbirtt In most shells, pwd is in fact a built in, however invoking /bin/pwd has no effect on shell's environment - external utilities in general don't affect the shell environment. The reason why /bin/cd and /bin/pwd exist is for POSIX conformance, among other things. There's a good discussion about external cd some of which probably applies to /bin/pwd as well

    – Sergiy Kolodyazhnyy
    Jan 22 at 9:52



















52














Another use case of cd . would be when the directory you currently are in has been deleted and then made again. Consider trying the following -




  1. Create a directory temp


  2. cd temp and then do an ls

  3. Open another terminal and delete and then recreate that directory temp

  4. Back from the first terminal, try doing an ls. This would result in an error - ls: cannot open directory .: Stale file handle


  5. cd . and then doing an ls works fine






share|improve this answer



















  • 3





    This doesn't always work. In dash, for example, you'll get: cd: can't cd to . Now that I look at it, this is already mentioned in Sergiy's answer (moving, deleting/recreating - essentially the same: the directory you're in is no longer what was in the original path)

    – Olorin
    Jan 22 at 7:16








  • 12





    I use this a lot testing remote deploys. The directory I'm in will be deleted then recreated by some automation and I'll need to issue cd . to move to the new directory with the same name.

    – HP Williams
    Jan 22 at 10:22






  • 2





    I use cd . all the time when I have a shell whose current working directory was mounted with sshfs but the ssh session has been closed and reopened.

    – jamesdlin
    Jan 22 at 21:52






  • 4





    In such a case I do "cd $PWD". Other variants might work, but this one clearly expresses the intent: extract what is supposed to be my current path (i.e. read content of PWD environment variable), then walk the filesystem hierarchy from the root, down to a directory that happens to be reachable via that path, whether it is actually the same directory or not. This fits exactly the use case in this answer.

    – Stéphane Gourichon
    Jan 23 at 14:32






  • 3





    I'm really surprised, shocked even, that cd . works when the directory has been unlinked and a new, different directory is created at the same file-system path. The current working directory has been unlinked and presumably as part of that, it no longer has a . or .. entry, and even if it did, the . entry should continue to point to itself. It looks like the shell or the kernel is executing the cd command based on what the directory path name was rather than simply accessing the . entry. Can anyone confirm that behaviour?

    – Adrian Pronk
    Jan 25 at 9:45



















35














You can clear $OLDPWD with a quick cd ., if there should be a case where you don't want it to point anywhere "interesting". It'll also affect cd -.






share|improve this answer































    16














    Programmatically it's useful as a no-op. Consider a path provided from external input.



    read -p "Path to file: " p
    dirn=$(dirname "$p")
    file=$(basename "$p")
    echo "dirn=$dirn, file=$file"
    cd "$dirn"
    ls -ld "$file"


    With a path such as "fred.txt" the directory will become ., leading to cd .






    share|improve this answer



















    • 1





      It's useful that it doesn't throw an error if you're already in the directory that you're navigating to, but I wouldn't say that it is useful as a no-op.

      – Captain Man
      Jan 22 at 14:05






    • 2





      @CaptainMan not throwing an error if you're already in the directory is (effectively) a no-op. The dirname command generates . where necessary to avoid breaking code that expects to be able to split a path.

      – roaima
      Jan 22 at 16:16





















    15














    This is common if you had to work with a bad USB cable. After a device get disconnected and connected again, and automounted to the same directory, you have to use cd . to get it work again.






    share|improve this answer



















    • 1





      Won't that depend upon what sort of device, how it's being accessed, its filesystem, the OS, &c?

      – gidds
      Jan 24 at 10:09











    • OS, maybe. It's unlikely the filesystem is relevant, as long as the kernel can find its way unmounting it while it is being used. In any case, the command has its use in the exactly right situation.

      – user23013
      Jan 24 at 10:39



















    11














    Note that "." is the proper way to specify the name of the file that is open as the current working directory of any process (including a shell process of course), and "." is always a valid name of a file in any and all directories, including the current working directory. The name . may not be a valid name for a file for a given instance of a process if, say, the underlying current working directory has been removed (or gone "bad", e.g. a stale NFS handle), but it is a valid name of a file that is guaranteed to exist in every valid directory.



    So . must be a valid argument for any command that accepts the name of a directory, and thus in the standard shell cd . must be a valid command.



    Whether cd . is useful or not depends on the shell implementation. As mentioned it can be useful if the shell resets its internal idea of the full pathname of the current working directory after calling the underlying chdir system call, say for example if the underlying directory (or some parent of it) has been renamed.



    At least some shells I know (/bin/sh on FreeBSD and NetBSD) will convert cd "" into cd ., which can arguably be described a feature to support programmatic use in a shell script where a variable might be used as a parameter (i.e. converting an empty variable substitution into a "do nothing" result), though the FreeBSD commit history says the change was directly due to adding POSIX support to prevent a failure from chdir(""), which POSIX mandates must fail.



    Some other shells will replace the . with whatever they have stored as the fully qualified pathname to their current working directory, and thus for them this may allow for the behaviour mentioned in Sahil Agarwal's answer.






    share|improve this answer

































      4














      I used this command just today when I rebased the branch I was working on in Git, from within a directory which had first been created on that same branch. The rebase went fine but afterwards, git status threw an error. After cd . everything was normal.



      (I was working in MobaXterm on Windows, incidentally. Just in case you're trying to reproduce this. It may not happen on other systems.)





      I also have used this command in directories that are refreshed by an automated process that moves aside the old directory and replaces it with a new one (so it is as close to atomic as possible). Not a common situation but cd . is exactly what's needed.





      After reading this excellent answer from Stephane Chazelas:




      • https://unix.stackexchange.com/a/79621/135943


      I now understand that my use cases above only work because I am using bash, in which cd . is equivalent to cd "$PWD". I highly recommend reading the linked answer.






      share|improve this answer

































        1














        I use cd . to rerun the stuff I've overloaded cd with via a bash function.



        From my ~/.bashrc:



        # from the "xttitle(1)" man page - put info in window title
        update_title()
        {
        [[ $TERM = xterm ]] || [[ $TERM = xterm-color ]] && xttitle "[$$] ${USER}@${HOSTNAME}:$PWD"
        }

        cd()
        {
        [[ -z "$*" ]] && builtin cd $HOME
        [[ -n "$*" ]] && builtin cd "$*"
        update_title
        }





        share|improve this answer

































          0














          EDIT: This has already been suggested by Sahil previously.



          This is useful if you are inside a folder that got deleted and recreated by another process. For example, assuming the two terminal sessions $1 and $2:



          $1 mkdir d
          $1 cd d
          $1 touch f

          $2 rm -rf /path/to/d # delete the folder where $1 is in ...
          $2 mkdir /path/to/d # ... and recreate it

          $1 touch g # cannot create file g because current dir doesn't exist anymore
          touch: cannot touch ‘g’: Stale file handle
          $1 cd . # go to the newly created dir (same path)
          $1 touch g # works fine now


          I am not sure whether where exactly (OS, SHELL, ...?) the root cause of this behavior is.






          share|improve this answer


























          • This has already been mentioned by other answers.

            – Kusalananda
            21 hours ago



















          -8














          No, it has no sense.
          Neither in scripting , it just does nothing.






          share|improve this answer








          New contributor




          Federico is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.
















          • 2





            Depending on the shell, it would reset $PWD, and it would possibly call other shell functions if the user has provided their own cd function or alias to overload the built in cd. It would also verify that the current directory is still valid and that the current use has permission to be there.

            – Kusalananda
            Jan 23 at 16:22













          • 1) of course we are not talking about possible custom aliases of "cd" but the standard build 2) how the current use can be there if it had no permission? To make it simple I just say that in real world there is no reason to use it in my opinion .

            – Federico
            Jan 23 at 16:36






          • 1





            1) Aren't we? 2) The real world is not simple, and Unix is a multi-user operating system. A user may change permissions on directories, and if the script, or the interactive shell of another user, happens to have that directory (or a subdirectory thereof) as its working directory, cd . would complain.

            – Kusalananda
            Jan 23 at 16:45






          • 4





            Federico, according to the rules of the site and my own personal rules, I should downvote your answer. However, you are new. Welcome! Please review some of the other answers. After that, if you think your answer is wrong, please delete it. Please enjoy giving other answers to this question and others.

            – daveloyall
            Jan 23 at 22:35






          • 2





            Especially in scripting, sometimes "does nothing" is exactly what's needed.

            – Matthew Najmon
            2 days ago



















          11 Answers
          11






          active

          oldest

          votes








          11 Answers
          11






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          151














          I think this is overthinking the problem. cd . may not be something that one would manually run in the usual course of things, but it definitely is something that can come up in programmatic execution (think of any situation where you might cd to the directory containing a file, whose path is supplied by the user). Therefore, it doesn't have to have some specific use: as long as it fulfills the usual semantics of cd <some-path>, it is useful.






          share|improve this answer



















          • 11





            Agreed, . should be treated as a valid path specified by cd syntax just fine.

            – Sergiy Kolodyazhnyy
            Jan 22 at 4:52






          • 17





            You can add the following example: Loops like while IFS= read Dir; do cd "$Dir"; do_something; done < <(find . -type d). During its course, find produces . as path, so that the command cd "$Dir" expands to cd .. So, in scripts, it is perfectly useful.

            – rexkogitans
            Jan 22 at 9:43






          • 1





            @rexkogitans your illustration is clear but the code would fail on its second iteration. You would need to put the cd and subsequent code in a subshell so that the relative directory path remained relative to the starting point rather than to the previous iteration.

            – roaima
            Jan 22 at 11:39






          • 5





            For example, a script actually runs cd ${path_to_directory}, but at some point it turns out the directory is the current directory, and path_to_directory = . so you would need cd . to work just in case.

            – Demis
            Jan 23 at 7:46






          • 4





            In other words, its utility is in the fact that it makes extra code (if checks and else clauses, any kind of special casing) unnecessary.

            – jpmc26
            Jan 24 at 18:27


















          151














          I think this is overthinking the problem. cd . may not be something that one would manually run in the usual course of things, but it definitely is something that can come up in programmatic execution (think of any situation where you might cd to the directory containing a file, whose path is supplied by the user). Therefore, it doesn't have to have some specific use: as long as it fulfills the usual semantics of cd <some-path>, it is useful.






          share|improve this answer



















          • 11





            Agreed, . should be treated as a valid path specified by cd syntax just fine.

            – Sergiy Kolodyazhnyy
            Jan 22 at 4:52






          • 17





            You can add the following example: Loops like while IFS= read Dir; do cd "$Dir"; do_something; done < <(find . -type d). During its course, find produces . as path, so that the command cd "$Dir" expands to cd .. So, in scripts, it is perfectly useful.

            – rexkogitans
            Jan 22 at 9:43






          • 1





            @rexkogitans your illustration is clear but the code would fail on its second iteration. You would need to put the cd and subsequent code in a subshell so that the relative directory path remained relative to the starting point rather than to the previous iteration.

            – roaima
            Jan 22 at 11:39






          • 5





            For example, a script actually runs cd ${path_to_directory}, but at some point it turns out the directory is the current directory, and path_to_directory = . so you would need cd . to work just in case.

            – Demis
            Jan 23 at 7:46






          • 4





            In other words, its utility is in the fact that it makes extra code (if checks and else clauses, any kind of special casing) unnecessary.

            – jpmc26
            Jan 24 at 18:27
















          151












          151








          151







          I think this is overthinking the problem. cd . may not be something that one would manually run in the usual course of things, but it definitely is something that can come up in programmatic execution (think of any situation where you might cd to the directory containing a file, whose path is supplied by the user). Therefore, it doesn't have to have some specific use: as long as it fulfills the usual semantics of cd <some-path>, it is useful.






          share|improve this answer













          I think this is overthinking the problem. cd . may not be something that one would manually run in the usual course of things, but it definitely is something that can come up in programmatic execution (think of any situation where you might cd to the directory containing a file, whose path is supplied by the user). Therefore, it doesn't have to have some specific use: as long as it fulfills the usual semantics of cd <some-path>, it is useful.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 22 at 4:33









          OlorinOlorin

          3,0691416




          3,0691416








          • 11





            Agreed, . should be treated as a valid path specified by cd syntax just fine.

            – Sergiy Kolodyazhnyy
            Jan 22 at 4:52






          • 17





            You can add the following example: Loops like while IFS= read Dir; do cd "$Dir"; do_something; done < <(find . -type d). During its course, find produces . as path, so that the command cd "$Dir" expands to cd .. So, in scripts, it is perfectly useful.

            – rexkogitans
            Jan 22 at 9:43






          • 1





            @rexkogitans your illustration is clear but the code would fail on its second iteration. You would need to put the cd and subsequent code in a subshell so that the relative directory path remained relative to the starting point rather than to the previous iteration.

            – roaima
            Jan 22 at 11:39






          • 5





            For example, a script actually runs cd ${path_to_directory}, but at some point it turns out the directory is the current directory, and path_to_directory = . so you would need cd . to work just in case.

            – Demis
            Jan 23 at 7:46






          • 4





            In other words, its utility is in the fact that it makes extra code (if checks and else clauses, any kind of special casing) unnecessary.

            – jpmc26
            Jan 24 at 18:27
















          • 11





            Agreed, . should be treated as a valid path specified by cd syntax just fine.

            – Sergiy Kolodyazhnyy
            Jan 22 at 4:52






          • 17





            You can add the following example: Loops like while IFS= read Dir; do cd "$Dir"; do_something; done < <(find . -type d). During its course, find produces . as path, so that the command cd "$Dir" expands to cd .. So, in scripts, it is perfectly useful.

            – rexkogitans
            Jan 22 at 9:43






          • 1





            @rexkogitans your illustration is clear but the code would fail on its second iteration. You would need to put the cd and subsequent code in a subshell so that the relative directory path remained relative to the starting point rather than to the previous iteration.

            – roaima
            Jan 22 at 11:39






          • 5





            For example, a script actually runs cd ${path_to_directory}, but at some point it turns out the directory is the current directory, and path_to_directory = . so you would need cd . to work just in case.

            – Demis
            Jan 23 at 7:46






          • 4





            In other words, its utility is in the fact that it makes extra code (if checks and else clauses, any kind of special casing) unnecessary.

            – jpmc26
            Jan 24 at 18:27










          11




          11





          Agreed, . should be treated as a valid path specified by cd syntax just fine.

          – Sergiy Kolodyazhnyy
          Jan 22 at 4:52





          Agreed, . should be treated as a valid path specified by cd syntax just fine.

          – Sergiy Kolodyazhnyy
          Jan 22 at 4:52




          17




          17





          You can add the following example: Loops like while IFS= read Dir; do cd "$Dir"; do_something; done < <(find . -type d). During its course, find produces . as path, so that the command cd "$Dir" expands to cd .. So, in scripts, it is perfectly useful.

          – rexkogitans
          Jan 22 at 9:43





          You can add the following example: Loops like while IFS= read Dir; do cd "$Dir"; do_something; done < <(find . -type d). During its course, find produces . as path, so that the command cd "$Dir" expands to cd .. So, in scripts, it is perfectly useful.

          – rexkogitans
          Jan 22 at 9:43




          1




          1





          @rexkogitans your illustration is clear but the code would fail on its second iteration. You would need to put the cd and subsequent code in a subshell so that the relative directory path remained relative to the starting point rather than to the previous iteration.

          – roaima
          Jan 22 at 11:39





          @rexkogitans your illustration is clear but the code would fail on its second iteration. You would need to put the cd and subsequent code in a subshell so that the relative directory path remained relative to the starting point rather than to the previous iteration.

          – roaima
          Jan 22 at 11:39




          5




          5





          For example, a script actually runs cd ${path_to_directory}, but at some point it turns out the directory is the current directory, and path_to_directory = . so you would need cd . to work just in case.

          – Demis
          Jan 23 at 7:46





          For example, a script actually runs cd ${path_to_directory}, but at some point it turns out the directory is the current directory, and path_to_directory = . so you would need cd . to work just in case.

          – Demis
          Jan 23 at 7:46




          4




          4





          In other words, its utility is in the fact that it makes extra code (if checks and else clauses, any kind of special casing) unnecessary.

          – jpmc26
          Jan 24 at 18:27







          In other words, its utility is in the fact that it makes extra code (if checks and else clauses, any kind of special casing) unnecessary.

          – jpmc26
          Jan 24 at 18:27















          124














          The path of the directory could have changed since the last command was executed, and without cd . the bash and ksh93 shells will rely on the logical working directory described in the post linked in the question, so calling cd . which makes the shell issue the getcwd() syscall will ensure your current path is still valid.



          Steps to reproduce in bash:




          1. In a terminal tab issue mkdir ./dir_no_1; cd ./dir_no_1

          2. In a different terminal tab issue mv dir_no_1 dir_no_2

          3. In the first terminal tab issue echo $PWD and pwd. Notice that the directory has been externally renamed; the shell's environment has not been updated.

          4. Issue cd .; pwd; echo $PWD. Notice the value has been updated.


          ksh93, however, does not update the environment information, so cd . in ksh93 may in fact be useless. In /bin/dash on Ubuntu and other Debian-based systems, cd . returns dash: 3: cd: can't cd to . error, however cd -P . works (unlike in ksh93).






          share|improve this answer





















          • 20





            Good to know: I'll add that to my list of useless informations. ^^)

            – jayooin
            Jan 22 at 6:39






          • 10





            @jayooin Glad I could contribute to the list ;)

            – Sergiy Kolodyazhnyy
            Jan 22 at 7:53






          • 8





            I think you can do mv ../dir_no_1 ../dir_no_2 in the same terminal/bash.

            – ctrl-alt-delor
            Jan 22 at 9:00






          • 3





            @ctrl-alt-delor Confirmed, works :)

            – Sergiy Kolodyazhnyy
            Jan 22 at 9:12






          • 1





            @ymbirtt In most shells, pwd is in fact a built in, however invoking /bin/pwd has no effect on shell's environment - external utilities in general don't affect the shell environment. The reason why /bin/cd and /bin/pwd exist is for POSIX conformance, among other things. There's a good discussion about external cd some of which probably applies to /bin/pwd as well

            – Sergiy Kolodyazhnyy
            Jan 22 at 9:52
















          124














          The path of the directory could have changed since the last command was executed, and without cd . the bash and ksh93 shells will rely on the logical working directory described in the post linked in the question, so calling cd . which makes the shell issue the getcwd() syscall will ensure your current path is still valid.



          Steps to reproduce in bash:




          1. In a terminal tab issue mkdir ./dir_no_1; cd ./dir_no_1

          2. In a different terminal tab issue mv dir_no_1 dir_no_2

          3. In the first terminal tab issue echo $PWD and pwd. Notice that the directory has been externally renamed; the shell's environment has not been updated.

          4. Issue cd .; pwd; echo $PWD. Notice the value has been updated.


          ksh93, however, does not update the environment information, so cd . in ksh93 may in fact be useless. In /bin/dash on Ubuntu and other Debian-based systems, cd . returns dash: 3: cd: can't cd to . error, however cd -P . works (unlike in ksh93).






          share|improve this answer





















          • 20





            Good to know: I'll add that to my list of useless informations. ^^)

            – jayooin
            Jan 22 at 6:39






          • 10





            @jayooin Glad I could contribute to the list ;)

            – Sergiy Kolodyazhnyy
            Jan 22 at 7:53






          • 8





            I think you can do mv ../dir_no_1 ../dir_no_2 in the same terminal/bash.

            – ctrl-alt-delor
            Jan 22 at 9:00






          • 3





            @ctrl-alt-delor Confirmed, works :)

            – Sergiy Kolodyazhnyy
            Jan 22 at 9:12






          • 1





            @ymbirtt In most shells, pwd is in fact a built in, however invoking /bin/pwd has no effect on shell's environment - external utilities in general don't affect the shell environment. The reason why /bin/cd and /bin/pwd exist is for POSIX conformance, among other things. There's a good discussion about external cd some of which probably applies to /bin/pwd as well

            – Sergiy Kolodyazhnyy
            Jan 22 at 9:52














          124












          124








          124







          The path of the directory could have changed since the last command was executed, and without cd . the bash and ksh93 shells will rely on the logical working directory described in the post linked in the question, so calling cd . which makes the shell issue the getcwd() syscall will ensure your current path is still valid.



          Steps to reproduce in bash:




          1. In a terminal tab issue mkdir ./dir_no_1; cd ./dir_no_1

          2. In a different terminal tab issue mv dir_no_1 dir_no_2

          3. In the first terminal tab issue echo $PWD and pwd. Notice that the directory has been externally renamed; the shell's environment has not been updated.

          4. Issue cd .; pwd; echo $PWD. Notice the value has been updated.


          ksh93, however, does not update the environment information, so cd . in ksh93 may in fact be useless. In /bin/dash on Ubuntu and other Debian-based systems, cd . returns dash: 3: cd: can't cd to . error, however cd -P . works (unlike in ksh93).






          share|improve this answer















          The path of the directory could have changed since the last command was executed, and without cd . the bash and ksh93 shells will rely on the logical working directory described in the post linked in the question, so calling cd . which makes the shell issue the getcwd() syscall will ensure your current path is still valid.



          Steps to reproduce in bash:




          1. In a terminal tab issue mkdir ./dir_no_1; cd ./dir_no_1

          2. In a different terminal tab issue mv dir_no_1 dir_no_2

          3. In the first terminal tab issue echo $PWD and pwd. Notice that the directory has been externally renamed; the shell's environment has not been updated.

          4. Issue cd .; pwd; echo $PWD. Notice the value has been updated.


          ksh93, however, does not update the environment information, so cd . in ksh93 may in fact be useless. In /bin/dash on Ubuntu and other Debian-based systems, cd . returns dash: 3: cd: can't cd to . error, however cd -P . works (unlike in ksh93).







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 22 at 22:40









          psmears

          43928




          43928










          answered Jan 22 at 4:12









          Sergiy KolodyazhnyySergiy Kolodyazhnyy

          9,95532659




          9,95532659








          • 20





            Good to know: I'll add that to my list of useless informations. ^^)

            – jayooin
            Jan 22 at 6:39






          • 10





            @jayooin Glad I could contribute to the list ;)

            – Sergiy Kolodyazhnyy
            Jan 22 at 7:53






          • 8





            I think you can do mv ../dir_no_1 ../dir_no_2 in the same terminal/bash.

            – ctrl-alt-delor
            Jan 22 at 9:00






          • 3





            @ctrl-alt-delor Confirmed, works :)

            – Sergiy Kolodyazhnyy
            Jan 22 at 9:12






          • 1





            @ymbirtt In most shells, pwd is in fact a built in, however invoking /bin/pwd has no effect on shell's environment - external utilities in general don't affect the shell environment. The reason why /bin/cd and /bin/pwd exist is for POSIX conformance, among other things. There's a good discussion about external cd some of which probably applies to /bin/pwd as well

            – Sergiy Kolodyazhnyy
            Jan 22 at 9:52














          • 20





            Good to know: I'll add that to my list of useless informations. ^^)

            – jayooin
            Jan 22 at 6:39






          • 10





            @jayooin Glad I could contribute to the list ;)

            – Sergiy Kolodyazhnyy
            Jan 22 at 7:53






          • 8





            I think you can do mv ../dir_no_1 ../dir_no_2 in the same terminal/bash.

            – ctrl-alt-delor
            Jan 22 at 9:00






          • 3





            @ctrl-alt-delor Confirmed, works :)

            – Sergiy Kolodyazhnyy
            Jan 22 at 9:12






          • 1





            @ymbirtt In most shells, pwd is in fact a built in, however invoking /bin/pwd has no effect on shell's environment - external utilities in general don't affect the shell environment. The reason why /bin/cd and /bin/pwd exist is for POSIX conformance, among other things. There's a good discussion about external cd some of which probably applies to /bin/pwd as well

            – Sergiy Kolodyazhnyy
            Jan 22 at 9:52








          20




          20





          Good to know: I'll add that to my list of useless informations. ^^)

          – jayooin
          Jan 22 at 6:39





          Good to know: I'll add that to my list of useless informations. ^^)

          – jayooin
          Jan 22 at 6:39




          10




          10





          @jayooin Glad I could contribute to the list ;)

          – Sergiy Kolodyazhnyy
          Jan 22 at 7:53





          @jayooin Glad I could contribute to the list ;)

          – Sergiy Kolodyazhnyy
          Jan 22 at 7:53




          8




          8





          I think you can do mv ../dir_no_1 ../dir_no_2 in the same terminal/bash.

          – ctrl-alt-delor
          Jan 22 at 9:00





          I think you can do mv ../dir_no_1 ../dir_no_2 in the same terminal/bash.

          – ctrl-alt-delor
          Jan 22 at 9:00




          3




          3





          @ctrl-alt-delor Confirmed, works :)

          – Sergiy Kolodyazhnyy
          Jan 22 at 9:12





          @ctrl-alt-delor Confirmed, works :)

          – Sergiy Kolodyazhnyy
          Jan 22 at 9:12




          1




          1





          @ymbirtt In most shells, pwd is in fact a built in, however invoking /bin/pwd has no effect on shell's environment - external utilities in general don't affect the shell environment. The reason why /bin/cd and /bin/pwd exist is for POSIX conformance, among other things. There's a good discussion about external cd some of which probably applies to /bin/pwd as well

          – Sergiy Kolodyazhnyy
          Jan 22 at 9:52





          @ymbirtt In most shells, pwd is in fact a built in, however invoking /bin/pwd has no effect on shell's environment - external utilities in general don't affect the shell environment. The reason why /bin/cd and /bin/pwd exist is for POSIX conformance, among other things. There's a good discussion about external cd some of which probably applies to /bin/pwd as well

          – Sergiy Kolodyazhnyy
          Jan 22 at 9:52











          52














          Another use case of cd . would be when the directory you currently are in has been deleted and then made again. Consider trying the following -




          1. Create a directory temp


          2. cd temp and then do an ls

          3. Open another terminal and delete and then recreate that directory temp

          4. Back from the first terminal, try doing an ls. This would result in an error - ls: cannot open directory .: Stale file handle


          5. cd . and then doing an ls works fine






          share|improve this answer



















          • 3





            This doesn't always work. In dash, for example, you'll get: cd: can't cd to . Now that I look at it, this is already mentioned in Sergiy's answer (moving, deleting/recreating - essentially the same: the directory you're in is no longer what was in the original path)

            – Olorin
            Jan 22 at 7:16








          • 12





            I use this a lot testing remote deploys. The directory I'm in will be deleted then recreated by some automation and I'll need to issue cd . to move to the new directory with the same name.

            – HP Williams
            Jan 22 at 10:22






          • 2





            I use cd . all the time when I have a shell whose current working directory was mounted with sshfs but the ssh session has been closed and reopened.

            – jamesdlin
            Jan 22 at 21:52






          • 4





            In such a case I do "cd $PWD". Other variants might work, but this one clearly expresses the intent: extract what is supposed to be my current path (i.e. read content of PWD environment variable), then walk the filesystem hierarchy from the root, down to a directory that happens to be reachable via that path, whether it is actually the same directory or not. This fits exactly the use case in this answer.

            – Stéphane Gourichon
            Jan 23 at 14:32






          • 3





            I'm really surprised, shocked even, that cd . works when the directory has been unlinked and a new, different directory is created at the same file-system path. The current working directory has been unlinked and presumably as part of that, it no longer has a . or .. entry, and even if it did, the . entry should continue to point to itself. It looks like the shell or the kernel is executing the cd command based on what the directory path name was rather than simply accessing the . entry. Can anyone confirm that behaviour?

            – Adrian Pronk
            Jan 25 at 9:45
















          52














          Another use case of cd . would be when the directory you currently are in has been deleted and then made again. Consider trying the following -




          1. Create a directory temp


          2. cd temp and then do an ls

          3. Open another terminal and delete and then recreate that directory temp

          4. Back from the first terminal, try doing an ls. This would result in an error - ls: cannot open directory .: Stale file handle


          5. cd . and then doing an ls works fine






          share|improve this answer



















          • 3





            This doesn't always work. In dash, for example, you'll get: cd: can't cd to . Now that I look at it, this is already mentioned in Sergiy's answer (moving, deleting/recreating - essentially the same: the directory you're in is no longer what was in the original path)

            – Olorin
            Jan 22 at 7:16








          • 12





            I use this a lot testing remote deploys. The directory I'm in will be deleted then recreated by some automation and I'll need to issue cd . to move to the new directory with the same name.

            – HP Williams
            Jan 22 at 10:22






          • 2





            I use cd . all the time when I have a shell whose current working directory was mounted with sshfs but the ssh session has been closed and reopened.

            – jamesdlin
            Jan 22 at 21:52






          • 4





            In such a case I do "cd $PWD". Other variants might work, but this one clearly expresses the intent: extract what is supposed to be my current path (i.e. read content of PWD environment variable), then walk the filesystem hierarchy from the root, down to a directory that happens to be reachable via that path, whether it is actually the same directory or not. This fits exactly the use case in this answer.

            – Stéphane Gourichon
            Jan 23 at 14:32






          • 3





            I'm really surprised, shocked even, that cd . works when the directory has been unlinked and a new, different directory is created at the same file-system path. The current working directory has been unlinked and presumably as part of that, it no longer has a . or .. entry, and even if it did, the . entry should continue to point to itself. It looks like the shell or the kernel is executing the cd command based on what the directory path name was rather than simply accessing the . entry. Can anyone confirm that behaviour?

            – Adrian Pronk
            Jan 25 at 9:45














          52












          52








          52







          Another use case of cd . would be when the directory you currently are in has been deleted and then made again. Consider trying the following -




          1. Create a directory temp


          2. cd temp and then do an ls

          3. Open another terminal and delete and then recreate that directory temp

          4. Back from the first terminal, try doing an ls. This would result in an error - ls: cannot open directory .: Stale file handle


          5. cd . and then doing an ls works fine






          share|improve this answer













          Another use case of cd . would be when the directory you currently are in has been deleted and then made again. Consider trying the following -




          1. Create a directory temp


          2. cd temp and then do an ls

          3. Open another terminal and delete and then recreate that directory temp

          4. Back from the first terminal, try doing an ls. This would result in an error - ls: cannot open directory .: Stale file handle


          5. cd . and then doing an ls works fine







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 22 at 7:08









          Sahil AgarwalSahil Agarwal

          62912




          62912








          • 3





            This doesn't always work. In dash, for example, you'll get: cd: can't cd to . Now that I look at it, this is already mentioned in Sergiy's answer (moving, deleting/recreating - essentially the same: the directory you're in is no longer what was in the original path)

            – Olorin
            Jan 22 at 7:16








          • 12





            I use this a lot testing remote deploys. The directory I'm in will be deleted then recreated by some automation and I'll need to issue cd . to move to the new directory with the same name.

            – HP Williams
            Jan 22 at 10:22






          • 2





            I use cd . all the time when I have a shell whose current working directory was mounted with sshfs but the ssh session has been closed and reopened.

            – jamesdlin
            Jan 22 at 21:52






          • 4





            In such a case I do "cd $PWD". Other variants might work, but this one clearly expresses the intent: extract what is supposed to be my current path (i.e. read content of PWD environment variable), then walk the filesystem hierarchy from the root, down to a directory that happens to be reachable via that path, whether it is actually the same directory or not. This fits exactly the use case in this answer.

            – Stéphane Gourichon
            Jan 23 at 14:32






          • 3





            I'm really surprised, shocked even, that cd . works when the directory has been unlinked and a new, different directory is created at the same file-system path. The current working directory has been unlinked and presumably as part of that, it no longer has a . or .. entry, and even if it did, the . entry should continue to point to itself. It looks like the shell or the kernel is executing the cd command based on what the directory path name was rather than simply accessing the . entry. Can anyone confirm that behaviour?

            – Adrian Pronk
            Jan 25 at 9:45














          • 3





            This doesn't always work. In dash, for example, you'll get: cd: can't cd to . Now that I look at it, this is already mentioned in Sergiy's answer (moving, deleting/recreating - essentially the same: the directory you're in is no longer what was in the original path)

            – Olorin
            Jan 22 at 7:16








          • 12





            I use this a lot testing remote deploys. The directory I'm in will be deleted then recreated by some automation and I'll need to issue cd . to move to the new directory with the same name.

            – HP Williams
            Jan 22 at 10:22






          • 2





            I use cd . all the time when I have a shell whose current working directory was mounted with sshfs but the ssh session has been closed and reopened.

            – jamesdlin
            Jan 22 at 21:52






          • 4





            In such a case I do "cd $PWD". Other variants might work, but this one clearly expresses the intent: extract what is supposed to be my current path (i.e. read content of PWD environment variable), then walk the filesystem hierarchy from the root, down to a directory that happens to be reachable via that path, whether it is actually the same directory or not. This fits exactly the use case in this answer.

            – Stéphane Gourichon
            Jan 23 at 14:32






          • 3





            I'm really surprised, shocked even, that cd . works when the directory has been unlinked and a new, different directory is created at the same file-system path. The current working directory has been unlinked and presumably as part of that, it no longer has a . or .. entry, and even if it did, the . entry should continue to point to itself. It looks like the shell or the kernel is executing the cd command based on what the directory path name was rather than simply accessing the . entry. Can anyone confirm that behaviour?

            – Adrian Pronk
            Jan 25 at 9:45








          3




          3





          This doesn't always work. In dash, for example, you'll get: cd: can't cd to . Now that I look at it, this is already mentioned in Sergiy's answer (moving, deleting/recreating - essentially the same: the directory you're in is no longer what was in the original path)

          – Olorin
          Jan 22 at 7:16







          This doesn't always work. In dash, for example, you'll get: cd: can't cd to . Now that I look at it, this is already mentioned in Sergiy's answer (moving, deleting/recreating - essentially the same: the directory you're in is no longer what was in the original path)

          – Olorin
          Jan 22 at 7:16






          12




          12





          I use this a lot testing remote deploys. The directory I'm in will be deleted then recreated by some automation and I'll need to issue cd . to move to the new directory with the same name.

          – HP Williams
          Jan 22 at 10:22





          I use this a lot testing remote deploys. The directory I'm in will be deleted then recreated by some automation and I'll need to issue cd . to move to the new directory with the same name.

          – HP Williams
          Jan 22 at 10:22




          2




          2





          I use cd . all the time when I have a shell whose current working directory was mounted with sshfs but the ssh session has been closed and reopened.

          – jamesdlin
          Jan 22 at 21:52





          I use cd . all the time when I have a shell whose current working directory was mounted with sshfs but the ssh session has been closed and reopened.

          – jamesdlin
          Jan 22 at 21:52




          4




          4





          In such a case I do "cd $PWD". Other variants might work, but this one clearly expresses the intent: extract what is supposed to be my current path (i.e. read content of PWD environment variable), then walk the filesystem hierarchy from the root, down to a directory that happens to be reachable via that path, whether it is actually the same directory or not. This fits exactly the use case in this answer.

          – Stéphane Gourichon
          Jan 23 at 14:32





          In such a case I do "cd $PWD". Other variants might work, but this one clearly expresses the intent: extract what is supposed to be my current path (i.e. read content of PWD environment variable), then walk the filesystem hierarchy from the root, down to a directory that happens to be reachable via that path, whether it is actually the same directory or not. This fits exactly the use case in this answer.

          – Stéphane Gourichon
          Jan 23 at 14:32




          3




          3





          I'm really surprised, shocked even, that cd . works when the directory has been unlinked and a new, different directory is created at the same file-system path. The current working directory has been unlinked and presumably as part of that, it no longer has a . or .. entry, and even if it did, the . entry should continue to point to itself. It looks like the shell or the kernel is executing the cd command based on what the directory path name was rather than simply accessing the . entry. Can anyone confirm that behaviour?

          – Adrian Pronk
          Jan 25 at 9:45





          I'm really surprised, shocked even, that cd . works when the directory has been unlinked and a new, different directory is created at the same file-system path. The current working directory has been unlinked and presumably as part of that, it no longer has a . or .. entry, and even if it did, the . entry should continue to point to itself. It looks like the shell or the kernel is executing the cd command based on what the directory path name was rather than simply accessing the . entry. Can anyone confirm that behaviour?

          – Adrian Pronk
          Jan 25 at 9:45











          35














          You can clear $OLDPWD with a quick cd ., if there should be a case where you don't want it to point anywhere "interesting". It'll also affect cd -.






          share|improve this answer




























            35














            You can clear $OLDPWD with a quick cd ., if there should be a case where you don't want it to point anywhere "interesting". It'll also affect cd -.






            share|improve this answer


























              35












              35








              35







              You can clear $OLDPWD with a quick cd ., if there should be a case where you don't want it to point anywhere "interesting". It'll also affect cd -.






              share|improve this answer













              You can clear $OLDPWD with a quick cd ., if there should be a case where you don't want it to point anywhere "interesting". It'll also affect cd -.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jan 22 at 11:38









              souser12345souser12345

              1,2291015




              1,2291015























                  16














                  Programmatically it's useful as a no-op. Consider a path provided from external input.



                  read -p "Path to file: " p
                  dirn=$(dirname "$p")
                  file=$(basename "$p")
                  echo "dirn=$dirn, file=$file"
                  cd "$dirn"
                  ls -ld "$file"


                  With a path such as "fred.txt" the directory will become ., leading to cd .






                  share|improve this answer



















                  • 1





                    It's useful that it doesn't throw an error if you're already in the directory that you're navigating to, but I wouldn't say that it is useful as a no-op.

                    – Captain Man
                    Jan 22 at 14:05






                  • 2





                    @CaptainMan not throwing an error if you're already in the directory is (effectively) a no-op. The dirname command generates . where necessary to avoid breaking code that expects to be able to split a path.

                    – roaima
                    Jan 22 at 16:16


















                  16














                  Programmatically it's useful as a no-op. Consider a path provided from external input.



                  read -p "Path to file: " p
                  dirn=$(dirname "$p")
                  file=$(basename "$p")
                  echo "dirn=$dirn, file=$file"
                  cd "$dirn"
                  ls -ld "$file"


                  With a path such as "fred.txt" the directory will become ., leading to cd .






                  share|improve this answer



















                  • 1





                    It's useful that it doesn't throw an error if you're already in the directory that you're navigating to, but I wouldn't say that it is useful as a no-op.

                    – Captain Man
                    Jan 22 at 14:05






                  • 2





                    @CaptainMan not throwing an error if you're already in the directory is (effectively) a no-op. The dirname command generates . where necessary to avoid breaking code that expects to be able to split a path.

                    – roaima
                    Jan 22 at 16:16
















                  16












                  16








                  16







                  Programmatically it's useful as a no-op. Consider a path provided from external input.



                  read -p "Path to file: " p
                  dirn=$(dirname "$p")
                  file=$(basename "$p")
                  echo "dirn=$dirn, file=$file"
                  cd "$dirn"
                  ls -ld "$file"


                  With a path such as "fred.txt" the directory will become ., leading to cd .






                  share|improve this answer













                  Programmatically it's useful as a no-op. Consider a path provided from external input.



                  read -p "Path to file: " p
                  dirn=$(dirname "$p")
                  file=$(basename "$p")
                  echo "dirn=$dirn, file=$file"
                  cd "$dirn"
                  ls -ld "$file"


                  With a path such as "fred.txt" the directory will become ., leading to cd .







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 22 at 8:00









                  roaimaroaima

                  44k555118




                  44k555118








                  • 1





                    It's useful that it doesn't throw an error if you're already in the directory that you're navigating to, but I wouldn't say that it is useful as a no-op.

                    – Captain Man
                    Jan 22 at 14:05






                  • 2





                    @CaptainMan not throwing an error if you're already in the directory is (effectively) a no-op. The dirname command generates . where necessary to avoid breaking code that expects to be able to split a path.

                    – roaima
                    Jan 22 at 16:16
















                  • 1





                    It's useful that it doesn't throw an error if you're already in the directory that you're navigating to, but I wouldn't say that it is useful as a no-op.

                    – Captain Man
                    Jan 22 at 14:05






                  • 2





                    @CaptainMan not throwing an error if you're already in the directory is (effectively) a no-op. The dirname command generates . where necessary to avoid breaking code that expects to be able to split a path.

                    – roaima
                    Jan 22 at 16:16










                  1




                  1





                  It's useful that it doesn't throw an error if you're already in the directory that you're navigating to, but I wouldn't say that it is useful as a no-op.

                  – Captain Man
                  Jan 22 at 14:05





                  It's useful that it doesn't throw an error if you're already in the directory that you're navigating to, but I wouldn't say that it is useful as a no-op.

                  – Captain Man
                  Jan 22 at 14:05




                  2




                  2





                  @CaptainMan not throwing an error if you're already in the directory is (effectively) a no-op. The dirname command generates . where necessary to avoid breaking code that expects to be able to split a path.

                  – roaima
                  Jan 22 at 16:16







                  @CaptainMan not throwing an error if you're already in the directory is (effectively) a no-op. The dirname command generates . where necessary to avoid breaking code that expects to be able to split a path.

                  – roaima
                  Jan 22 at 16:16













                  15














                  This is common if you had to work with a bad USB cable. After a device get disconnected and connected again, and automounted to the same directory, you have to use cd . to get it work again.






                  share|improve this answer



















                  • 1





                    Won't that depend upon what sort of device, how it's being accessed, its filesystem, the OS, &c?

                    – gidds
                    Jan 24 at 10:09











                  • OS, maybe. It's unlikely the filesystem is relevant, as long as the kernel can find its way unmounting it while it is being used. In any case, the command has its use in the exactly right situation.

                    – user23013
                    Jan 24 at 10:39
















                  15














                  This is common if you had to work with a bad USB cable. After a device get disconnected and connected again, and automounted to the same directory, you have to use cd . to get it work again.






                  share|improve this answer



















                  • 1





                    Won't that depend upon what sort of device, how it's being accessed, its filesystem, the OS, &c?

                    – gidds
                    Jan 24 at 10:09











                  • OS, maybe. It's unlikely the filesystem is relevant, as long as the kernel can find its way unmounting it while it is being used. In any case, the command has its use in the exactly right situation.

                    – user23013
                    Jan 24 at 10:39














                  15












                  15








                  15







                  This is common if you had to work with a bad USB cable. After a device get disconnected and connected again, and automounted to the same directory, you have to use cd . to get it work again.






                  share|improve this answer













                  This is common if you had to work with a bad USB cable. After a device get disconnected and connected again, and automounted to the same directory, you have to use cd . to get it work again.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 22 at 20:17









                  user23013user23013

                  627412




                  627412








                  • 1





                    Won't that depend upon what sort of device, how it's being accessed, its filesystem, the OS, &c?

                    – gidds
                    Jan 24 at 10:09











                  • OS, maybe. It's unlikely the filesystem is relevant, as long as the kernel can find its way unmounting it while it is being used. In any case, the command has its use in the exactly right situation.

                    – user23013
                    Jan 24 at 10:39














                  • 1





                    Won't that depend upon what sort of device, how it's being accessed, its filesystem, the OS, &c?

                    – gidds
                    Jan 24 at 10:09











                  • OS, maybe. It's unlikely the filesystem is relevant, as long as the kernel can find its way unmounting it while it is being used. In any case, the command has its use in the exactly right situation.

                    – user23013
                    Jan 24 at 10:39








                  1




                  1





                  Won't that depend upon what sort of device, how it's being accessed, its filesystem, the OS, &c?

                  – gidds
                  Jan 24 at 10:09





                  Won't that depend upon what sort of device, how it's being accessed, its filesystem, the OS, &c?

                  – gidds
                  Jan 24 at 10:09













                  OS, maybe. It's unlikely the filesystem is relevant, as long as the kernel can find its way unmounting it while it is being used. In any case, the command has its use in the exactly right situation.

                  – user23013
                  Jan 24 at 10:39





                  OS, maybe. It's unlikely the filesystem is relevant, as long as the kernel can find its way unmounting it while it is being used. In any case, the command has its use in the exactly right situation.

                  – user23013
                  Jan 24 at 10:39











                  11














                  Note that "." is the proper way to specify the name of the file that is open as the current working directory of any process (including a shell process of course), and "." is always a valid name of a file in any and all directories, including the current working directory. The name . may not be a valid name for a file for a given instance of a process if, say, the underlying current working directory has been removed (or gone "bad", e.g. a stale NFS handle), but it is a valid name of a file that is guaranteed to exist in every valid directory.



                  So . must be a valid argument for any command that accepts the name of a directory, and thus in the standard shell cd . must be a valid command.



                  Whether cd . is useful or not depends on the shell implementation. As mentioned it can be useful if the shell resets its internal idea of the full pathname of the current working directory after calling the underlying chdir system call, say for example if the underlying directory (or some parent of it) has been renamed.



                  At least some shells I know (/bin/sh on FreeBSD and NetBSD) will convert cd "" into cd ., which can arguably be described a feature to support programmatic use in a shell script where a variable might be used as a parameter (i.e. converting an empty variable substitution into a "do nothing" result), though the FreeBSD commit history says the change was directly due to adding POSIX support to prevent a failure from chdir(""), which POSIX mandates must fail.



                  Some other shells will replace the . with whatever they have stored as the fully qualified pathname to their current working directory, and thus for them this may allow for the behaviour mentioned in Sahil Agarwal's answer.






                  share|improve this answer






























                    11














                    Note that "." is the proper way to specify the name of the file that is open as the current working directory of any process (including a shell process of course), and "." is always a valid name of a file in any and all directories, including the current working directory. The name . may not be a valid name for a file for a given instance of a process if, say, the underlying current working directory has been removed (or gone "bad", e.g. a stale NFS handle), but it is a valid name of a file that is guaranteed to exist in every valid directory.



                    So . must be a valid argument for any command that accepts the name of a directory, and thus in the standard shell cd . must be a valid command.



                    Whether cd . is useful or not depends on the shell implementation. As mentioned it can be useful if the shell resets its internal idea of the full pathname of the current working directory after calling the underlying chdir system call, say for example if the underlying directory (or some parent of it) has been renamed.



                    At least some shells I know (/bin/sh on FreeBSD and NetBSD) will convert cd "" into cd ., which can arguably be described a feature to support programmatic use in a shell script where a variable might be used as a parameter (i.e. converting an empty variable substitution into a "do nothing" result), though the FreeBSD commit history says the change was directly due to adding POSIX support to prevent a failure from chdir(""), which POSIX mandates must fail.



                    Some other shells will replace the . with whatever they have stored as the fully qualified pathname to their current working directory, and thus for them this may allow for the behaviour mentioned in Sahil Agarwal's answer.






                    share|improve this answer




























                      11












                      11








                      11







                      Note that "." is the proper way to specify the name of the file that is open as the current working directory of any process (including a shell process of course), and "." is always a valid name of a file in any and all directories, including the current working directory. The name . may not be a valid name for a file for a given instance of a process if, say, the underlying current working directory has been removed (or gone "bad", e.g. a stale NFS handle), but it is a valid name of a file that is guaranteed to exist in every valid directory.



                      So . must be a valid argument for any command that accepts the name of a directory, and thus in the standard shell cd . must be a valid command.



                      Whether cd . is useful or not depends on the shell implementation. As mentioned it can be useful if the shell resets its internal idea of the full pathname of the current working directory after calling the underlying chdir system call, say for example if the underlying directory (or some parent of it) has been renamed.



                      At least some shells I know (/bin/sh on FreeBSD and NetBSD) will convert cd "" into cd ., which can arguably be described a feature to support programmatic use in a shell script where a variable might be used as a parameter (i.e. converting an empty variable substitution into a "do nothing" result), though the FreeBSD commit history says the change was directly due to adding POSIX support to prevent a failure from chdir(""), which POSIX mandates must fail.



                      Some other shells will replace the . with whatever they have stored as the fully qualified pathname to their current working directory, and thus for them this may allow for the behaviour mentioned in Sahil Agarwal's answer.






                      share|improve this answer















                      Note that "." is the proper way to specify the name of the file that is open as the current working directory of any process (including a shell process of course), and "." is always a valid name of a file in any and all directories, including the current working directory. The name . may not be a valid name for a file for a given instance of a process if, say, the underlying current working directory has been removed (or gone "bad", e.g. a stale NFS handle), but it is a valid name of a file that is guaranteed to exist in every valid directory.



                      So . must be a valid argument for any command that accepts the name of a directory, and thus in the standard shell cd . must be a valid command.



                      Whether cd . is useful or not depends on the shell implementation. As mentioned it can be useful if the shell resets its internal idea of the full pathname of the current working directory after calling the underlying chdir system call, say for example if the underlying directory (or some parent of it) has been renamed.



                      At least some shells I know (/bin/sh on FreeBSD and NetBSD) will convert cd "" into cd ., which can arguably be described a feature to support programmatic use in a shell script where a variable might be used as a parameter (i.e. converting an empty variable substitution into a "do nothing" result), though the FreeBSD commit history says the change was directly due to adding POSIX support to prevent a failure from chdir(""), which POSIX mandates must fail.



                      Some other shells will replace the . with whatever they have stored as the fully qualified pathname to their current working directory, and thus for them this may allow for the behaviour mentioned in Sahil Agarwal's answer.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Jan 24 at 13:22









                      Toby Speight

                      5,30211031




                      5,30211031










                      answered Jan 23 at 1:24









                      Greg A. WoodsGreg A. Woods

                      50037




                      50037























                          4














                          I used this command just today when I rebased the branch I was working on in Git, from within a directory which had first been created on that same branch. The rebase went fine but afterwards, git status threw an error. After cd . everything was normal.



                          (I was working in MobaXterm on Windows, incidentally. Just in case you're trying to reproduce this. It may not happen on other systems.)





                          I also have used this command in directories that are refreshed by an automated process that moves aside the old directory and replaces it with a new one (so it is as close to atomic as possible). Not a common situation but cd . is exactly what's needed.





                          After reading this excellent answer from Stephane Chazelas:




                          • https://unix.stackexchange.com/a/79621/135943


                          I now understand that my use cases above only work because I am using bash, in which cd . is equivalent to cd "$PWD". I highly recommend reading the linked answer.






                          share|improve this answer






























                            4














                            I used this command just today when I rebased the branch I was working on in Git, from within a directory which had first been created on that same branch. The rebase went fine but afterwards, git status threw an error. After cd . everything was normal.



                            (I was working in MobaXterm on Windows, incidentally. Just in case you're trying to reproduce this. It may not happen on other systems.)





                            I also have used this command in directories that are refreshed by an automated process that moves aside the old directory and replaces it with a new one (so it is as close to atomic as possible). Not a common situation but cd . is exactly what's needed.





                            After reading this excellent answer from Stephane Chazelas:




                            • https://unix.stackexchange.com/a/79621/135943


                            I now understand that my use cases above only work because I am using bash, in which cd . is equivalent to cd "$PWD". I highly recommend reading the linked answer.






                            share|improve this answer




























                              4












                              4








                              4







                              I used this command just today when I rebased the branch I was working on in Git, from within a directory which had first been created on that same branch. The rebase went fine but afterwards, git status threw an error. After cd . everything was normal.



                              (I was working in MobaXterm on Windows, incidentally. Just in case you're trying to reproduce this. It may not happen on other systems.)





                              I also have used this command in directories that are refreshed by an automated process that moves aside the old directory and replaces it with a new one (so it is as close to atomic as possible). Not a common situation but cd . is exactly what's needed.





                              After reading this excellent answer from Stephane Chazelas:




                              • https://unix.stackexchange.com/a/79621/135943


                              I now understand that my use cases above only work because I am using bash, in which cd . is equivalent to cd "$PWD". I highly recommend reading the linked answer.






                              share|improve this answer















                              I used this command just today when I rebased the branch I was working on in Git, from within a directory which had first been created on that same branch. The rebase went fine but afterwards, git status threw an error. After cd . everything was normal.



                              (I was working in MobaXterm on Windows, incidentally. Just in case you're trying to reproduce this. It may not happen on other systems.)





                              I also have used this command in directories that are refreshed by an automated process that moves aside the old directory and replaces it with a new one (so it is as close to atomic as possible). Not a common situation but cd . is exactly what's needed.





                              After reading this excellent answer from Stephane Chazelas:




                              • https://unix.stackexchange.com/a/79621/135943


                              I now understand that my use cases above only work because I am using bash, in which cd . is equivalent to cd "$PWD". I highly recommend reading the linked answer.







                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited Jan 24 at 20:32

























                              answered Jan 24 at 4:33









                              WildcardWildcard

                              22.8k963166




                              22.8k963166























                                  1














                                  I use cd . to rerun the stuff I've overloaded cd with via a bash function.



                                  From my ~/.bashrc:



                                  # from the "xttitle(1)" man page - put info in window title
                                  update_title()
                                  {
                                  [[ $TERM = xterm ]] || [[ $TERM = xterm-color ]] && xttitle "[$$] ${USER}@${HOSTNAME}:$PWD"
                                  }

                                  cd()
                                  {
                                  [[ -z "$*" ]] && builtin cd $HOME
                                  [[ -n "$*" ]] && builtin cd "$*"
                                  update_title
                                  }





                                  share|improve this answer






























                                    1














                                    I use cd . to rerun the stuff I've overloaded cd with via a bash function.



                                    From my ~/.bashrc:



                                    # from the "xttitle(1)" man page - put info in window title
                                    update_title()
                                    {
                                    [[ $TERM = xterm ]] || [[ $TERM = xterm-color ]] && xttitle "[$$] ${USER}@${HOSTNAME}:$PWD"
                                    }

                                    cd()
                                    {
                                    [[ -z "$*" ]] && builtin cd $HOME
                                    [[ -n "$*" ]] && builtin cd "$*"
                                    update_title
                                    }





                                    share|improve this answer




























                                      1












                                      1








                                      1







                                      I use cd . to rerun the stuff I've overloaded cd with via a bash function.



                                      From my ~/.bashrc:



                                      # from the "xttitle(1)" man page - put info in window title
                                      update_title()
                                      {
                                      [[ $TERM = xterm ]] || [[ $TERM = xterm-color ]] && xttitle "[$$] ${USER}@${HOSTNAME}:$PWD"
                                      }

                                      cd()
                                      {
                                      [[ -z "$*" ]] && builtin cd $HOME
                                      [[ -n "$*" ]] && builtin cd "$*"
                                      update_title
                                      }





                                      share|improve this answer















                                      I use cd . to rerun the stuff I've overloaded cd with via a bash function.



                                      From my ~/.bashrc:



                                      # from the "xttitle(1)" man page - put info in window title
                                      update_title()
                                      {
                                      [[ $TERM = xterm ]] || [[ $TERM = xterm-color ]] && xttitle "[$$] ${USER}@${HOSTNAME}:$PWD"
                                      }

                                      cd()
                                      {
                                      [[ -z "$*" ]] && builtin cd $HOME
                                      [[ -n "$*" ]] && builtin cd "$*"
                                      update_title
                                      }






                                      share|improve this answer














                                      share|improve this answer



                                      share|improve this answer








                                      edited yesterday

























                                      answered 2 days ago









                                      waltinatorwaltinator

                                      75048




                                      75048























                                          0














                                          EDIT: This has already been suggested by Sahil previously.



                                          This is useful if you are inside a folder that got deleted and recreated by another process. For example, assuming the two terminal sessions $1 and $2:



                                          $1 mkdir d
                                          $1 cd d
                                          $1 touch f

                                          $2 rm -rf /path/to/d # delete the folder where $1 is in ...
                                          $2 mkdir /path/to/d # ... and recreate it

                                          $1 touch g # cannot create file g because current dir doesn't exist anymore
                                          touch: cannot touch ‘g’: Stale file handle
                                          $1 cd . # go to the newly created dir (same path)
                                          $1 touch g # works fine now


                                          I am not sure whether where exactly (OS, SHELL, ...?) the root cause of this behavior is.






                                          share|improve this answer


























                                          • This has already been mentioned by other answers.

                                            – Kusalananda
                                            21 hours ago
















                                          0














                                          EDIT: This has already been suggested by Sahil previously.



                                          This is useful if you are inside a folder that got deleted and recreated by another process. For example, assuming the two terminal sessions $1 and $2:



                                          $1 mkdir d
                                          $1 cd d
                                          $1 touch f

                                          $2 rm -rf /path/to/d # delete the folder where $1 is in ...
                                          $2 mkdir /path/to/d # ... and recreate it

                                          $1 touch g # cannot create file g because current dir doesn't exist anymore
                                          touch: cannot touch ‘g’: Stale file handle
                                          $1 cd . # go to the newly created dir (same path)
                                          $1 touch g # works fine now


                                          I am not sure whether where exactly (OS, SHELL, ...?) the root cause of this behavior is.






                                          share|improve this answer


























                                          • This has already been mentioned by other answers.

                                            – Kusalananda
                                            21 hours ago














                                          0












                                          0








                                          0







                                          EDIT: This has already been suggested by Sahil previously.



                                          This is useful if you are inside a folder that got deleted and recreated by another process. For example, assuming the two terminal sessions $1 and $2:



                                          $1 mkdir d
                                          $1 cd d
                                          $1 touch f

                                          $2 rm -rf /path/to/d # delete the folder where $1 is in ...
                                          $2 mkdir /path/to/d # ... and recreate it

                                          $1 touch g # cannot create file g because current dir doesn't exist anymore
                                          touch: cannot touch ‘g’: Stale file handle
                                          $1 cd . # go to the newly created dir (same path)
                                          $1 touch g # works fine now


                                          I am not sure whether where exactly (OS, SHELL, ...?) the root cause of this behavior is.






                                          share|improve this answer















                                          EDIT: This has already been suggested by Sahil previously.



                                          This is useful if you are inside a folder that got deleted and recreated by another process. For example, assuming the two terminal sessions $1 and $2:



                                          $1 mkdir d
                                          $1 cd d
                                          $1 touch f

                                          $2 rm -rf /path/to/d # delete the folder where $1 is in ...
                                          $2 mkdir /path/to/d # ... and recreate it

                                          $1 touch g # cannot create file g because current dir doesn't exist anymore
                                          touch: cannot touch ‘g’: Stale file handle
                                          $1 cd . # go to the newly created dir (same path)
                                          $1 touch g # works fine now


                                          I am not sure whether where exactly (OS, SHELL, ...?) the root cause of this behavior is.







                                          share|improve this answer














                                          share|improve this answer



                                          share|improve this answer








                                          edited 17 hours ago

























                                          answered 21 hours ago









                                          RolfRolf

                                          5051510




                                          5051510













                                          • This has already been mentioned by other answers.

                                            – Kusalananda
                                            21 hours ago



















                                          • This has already been mentioned by other answers.

                                            – Kusalananda
                                            21 hours ago

















                                          This has already been mentioned by other answers.

                                          – Kusalananda
                                          21 hours ago





                                          This has already been mentioned by other answers.

                                          – Kusalananda
                                          21 hours ago











                                          -8














                                          No, it has no sense.
                                          Neither in scripting , it just does nothing.






                                          share|improve this answer








                                          New contributor




                                          Federico is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.
















                                          • 2





                                            Depending on the shell, it would reset $PWD, and it would possibly call other shell functions if the user has provided their own cd function or alias to overload the built in cd. It would also verify that the current directory is still valid and that the current use has permission to be there.

                                            – Kusalananda
                                            Jan 23 at 16:22













                                          • 1) of course we are not talking about possible custom aliases of "cd" but the standard build 2) how the current use can be there if it had no permission? To make it simple I just say that in real world there is no reason to use it in my opinion .

                                            – Federico
                                            Jan 23 at 16:36






                                          • 1





                                            1) Aren't we? 2) The real world is not simple, and Unix is a multi-user operating system. A user may change permissions on directories, and if the script, or the interactive shell of another user, happens to have that directory (or a subdirectory thereof) as its working directory, cd . would complain.

                                            – Kusalananda
                                            Jan 23 at 16:45






                                          • 4





                                            Federico, according to the rules of the site and my own personal rules, I should downvote your answer. However, you are new. Welcome! Please review some of the other answers. After that, if you think your answer is wrong, please delete it. Please enjoy giving other answers to this question and others.

                                            – daveloyall
                                            Jan 23 at 22:35






                                          • 2





                                            Especially in scripting, sometimes "does nothing" is exactly what's needed.

                                            – Matthew Najmon
                                            2 days ago
















                                          -8














                                          No, it has no sense.
                                          Neither in scripting , it just does nothing.






                                          share|improve this answer








                                          New contributor




                                          Federico is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.
















                                          • 2





                                            Depending on the shell, it would reset $PWD, and it would possibly call other shell functions if the user has provided their own cd function or alias to overload the built in cd. It would also verify that the current directory is still valid and that the current use has permission to be there.

                                            – Kusalananda
                                            Jan 23 at 16:22













                                          • 1) of course we are not talking about possible custom aliases of "cd" but the standard build 2) how the current use can be there if it had no permission? To make it simple I just say that in real world there is no reason to use it in my opinion .

                                            – Federico
                                            Jan 23 at 16:36






                                          • 1





                                            1) Aren't we? 2) The real world is not simple, and Unix is a multi-user operating system. A user may change permissions on directories, and if the script, or the interactive shell of another user, happens to have that directory (or a subdirectory thereof) as its working directory, cd . would complain.

                                            – Kusalananda
                                            Jan 23 at 16:45






                                          • 4





                                            Federico, according to the rules of the site and my own personal rules, I should downvote your answer. However, you are new. Welcome! Please review some of the other answers. After that, if you think your answer is wrong, please delete it. Please enjoy giving other answers to this question and others.

                                            – daveloyall
                                            Jan 23 at 22:35






                                          • 2





                                            Especially in scripting, sometimes "does nothing" is exactly what's needed.

                                            – Matthew Najmon
                                            2 days ago














                                          -8












                                          -8








                                          -8







                                          No, it has no sense.
                                          Neither in scripting , it just does nothing.






                                          share|improve this answer








                                          New contributor




                                          Federico is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.










                                          No, it has no sense.
                                          Neither in scripting , it just does nothing.







                                          share|improve this answer








                                          New contributor




                                          Federico is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.









                                          share|improve this answer



                                          share|improve this answer






                                          New contributor




                                          Federico is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.









                                          answered Jan 23 at 16:14









                                          Federico Federico

                                          1




                                          1




                                          New contributor




                                          Federico is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.





                                          New contributor





                                          Federico is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.






                                          Federico is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.








                                          • 2





                                            Depending on the shell, it would reset $PWD, and it would possibly call other shell functions if the user has provided their own cd function or alias to overload the built in cd. It would also verify that the current directory is still valid and that the current use has permission to be there.

                                            – Kusalananda
                                            Jan 23 at 16:22













                                          • 1) of course we are not talking about possible custom aliases of "cd" but the standard build 2) how the current use can be there if it had no permission? To make it simple I just say that in real world there is no reason to use it in my opinion .

                                            – Federico
                                            Jan 23 at 16:36






                                          • 1





                                            1) Aren't we? 2) The real world is not simple, and Unix is a multi-user operating system. A user may change permissions on directories, and if the script, or the interactive shell of another user, happens to have that directory (or a subdirectory thereof) as its working directory, cd . would complain.

                                            – Kusalananda
                                            Jan 23 at 16:45






                                          • 4





                                            Federico, according to the rules of the site and my own personal rules, I should downvote your answer. However, you are new. Welcome! Please review some of the other answers. After that, if you think your answer is wrong, please delete it. Please enjoy giving other answers to this question and others.

                                            – daveloyall
                                            Jan 23 at 22:35






                                          • 2





                                            Especially in scripting, sometimes "does nothing" is exactly what's needed.

                                            – Matthew Najmon
                                            2 days ago














                                          • 2





                                            Depending on the shell, it would reset $PWD, and it would possibly call other shell functions if the user has provided their own cd function or alias to overload the built in cd. It would also verify that the current directory is still valid and that the current use has permission to be there.

                                            – Kusalananda
                                            Jan 23 at 16:22













                                          • 1) of course we are not talking about possible custom aliases of "cd" but the standard build 2) how the current use can be there if it had no permission? To make it simple I just say that in real world there is no reason to use it in my opinion .

                                            – Federico
                                            Jan 23 at 16:36






                                          • 1





                                            1) Aren't we? 2) The real world is not simple, and Unix is a multi-user operating system. A user may change permissions on directories, and if the script, or the interactive shell of another user, happens to have that directory (or a subdirectory thereof) as its working directory, cd . would complain.

                                            – Kusalananda
                                            Jan 23 at 16:45






                                          • 4





                                            Federico, according to the rules of the site and my own personal rules, I should downvote your answer. However, you are new. Welcome! Please review some of the other answers. After that, if you think your answer is wrong, please delete it. Please enjoy giving other answers to this question and others.

                                            – daveloyall
                                            Jan 23 at 22:35






                                          • 2





                                            Especially in scripting, sometimes "does nothing" is exactly what's needed.

                                            – Matthew Najmon
                                            2 days ago








                                          2




                                          2





                                          Depending on the shell, it would reset $PWD, and it would possibly call other shell functions if the user has provided their own cd function or alias to overload the built in cd. It would also verify that the current directory is still valid and that the current use has permission to be there.

                                          – Kusalananda
                                          Jan 23 at 16:22







                                          Depending on the shell, it would reset $PWD, and it would possibly call other shell functions if the user has provided their own cd function or alias to overload the built in cd. It would also verify that the current directory is still valid and that the current use has permission to be there.

                                          – Kusalananda
                                          Jan 23 at 16:22















                                          1) of course we are not talking about possible custom aliases of "cd" but the standard build 2) how the current use can be there if it had no permission? To make it simple I just say that in real world there is no reason to use it in my opinion .

                                          – Federico
                                          Jan 23 at 16:36





                                          1) of course we are not talking about possible custom aliases of "cd" but the standard build 2) how the current use can be there if it had no permission? To make it simple I just say that in real world there is no reason to use it in my opinion .

                                          – Federico
                                          Jan 23 at 16:36




                                          1




                                          1





                                          1) Aren't we? 2) The real world is not simple, and Unix is a multi-user operating system. A user may change permissions on directories, and if the script, or the interactive shell of another user, happens to have that directory (or a subdirectory thereof) as its working directory, cd . would complain.

                                          – Kusalananda
                                          Jan 23 at 16:45





                                          1) Aren't we? 2) The real world is not simple, and Unix is a multi-user operating system. A user may change permissions on directories, and if the script, or the interactive shell of another user, happens to have that directory (or a subdirectory thereof) as its working directory, cd . would complain.

                                          – Kusalananda
                                          Jan 23 at 16:45




                                          4




                                          4





                                          Federico, according to the rules of the site and my own personal rules, I should downvote your answer. However, you are new. Welcome! Please review some of the other answers. After that, if you think your answer is wrong, please delete it. Please enjoy giving other answers to this question and others.

                                          – daveloyall
                                          Jan 23 at 22:35





                                          Federico, according to the rules of the site and my own personal rules, I should downvote your answer. However, you are new. Welcome! Please review some of the other answers. After that, if you think your answer is wrong, please delete it. Please enjoy giving other answers to this question and others.

                                          – daveloyall
                                          Jan 23 at 22:35




                                          2




                                          2





                                          Especially in scripting, sometimes "does nothing" is exactly what's needed.

                                          – Matthew Najmon
                                          2 days ago





                                          Especially in scripting, sometimes "does nothing" is exactly what's needed.

                                          – Matthew Najmon
                                          2 days ago



                                          Popular posts from this blog

                                          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                                          ComboBox Display Member on multiple fields

                                          Is it possible to collect Nectar points via Trainline?