To change the current working directory in Bash, you can use the cd
command followed by the directory you want to navigate to.
Here are some examples:
cd directory_name
cd /path/to/directory
cd ..
cd ~
cd -
Remember to replace directory_name
with the actual name of the directory or /path/to/directory
with the actual directory path.