Skip to content

Instantly share code, notes, and snippets.

@liuxk99
Last active August 5, 2025 10:23
Show Gist options
  • Save liuxk99/38e3b9f15908185cb8eae36edf7595c3 to your computer and use it in GitHub Desktop.
Save liuxk99/38e3b9f15908185cb8eae36edf7595c3 to your computer and use it in GitHub Desktop.
Common aliases for the `cd` command in Cygwin to access Windows directories, such as Desktop, Downloads, and Documents. Paste these lines at end of `~/.bashrc`.

Aliases

USER_HOME="$(cygpath -u "$USERPROFILE")"
alias cd.home="cd $USER_HOME"
alias cd.desktop="cd $USER_HOME/Desktop"
alias cd.downloads="cd $USER_HOME/Downloads"
alias cd.documents="cd $USER_HOME/Documents"

Effects

Letv@Lap07B ~
$ cd.home; pwd; \
> cd.desktop; pwd; \
> cd.documents; pwd; \
> cd.downloads; pwd
/cygdrive/c/Users/Letv
/cygdrive/c/Users/Letv/Desktop
/cygdrive/c/Users/Letv/Documents
/cygdrive/c/Users/Letv/Downloads
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment