How can I create a Cygwin shortcut that will open Cygwin at a specific folder? This would obviate having to type
cd /cygdrive/c/Users/Tom/Desktop/
@echo off C: SET mypath=%~dp0 c:\cygwin\bin\bash -c "cd '%mypath%'; export CHERE_INVOKING=1; exec /bin/bash --login -i"
Copy above commands in a text file and save it as .bat in any of "your folder of interest". It should open cygwin in "your folder of interest".