# The layout of your terminal should have a format of the following
[Drive]:/[User]/[Folder]/[So on and so forth]
# Example:
C:/Oyster/Desktop
# In order to change your directory, you use command: "cd" and then either input the new directory or the name of your next subdirectory (just the name of the folder)
# Example:
# Input:
C:/Oyster/ - $> cd Desktop
# Output:
C:/Oyster/Desktop - $>
function mkdcd () {
mkdir "$1" && cd "$1"
}