The cd command has a few common options that enhance its functionality:
-
cd ~: Navigates to the user's home directory. -
cd ..: Moves up one level to the parent directory. -
cd -: Switches back to the previous directory you were in. -
cd /path/to/directory: Changes to a specific directory using an absolute path. -
cd relative/path: Changes to a directory using a relative path based on the current directory.
These options help streamline navigation within the file system. If you have more questions or need examples, feel free to ask!
