Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Message-ID: From: "Schaible, Joerg" To: "'cygwin-list'" Cc: "'Jan-Friedrich Mutter'" Subject: RE: translate UNIX path to DOS path Date: Thu, 23 Sep 1999 10:19:37 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id EAA06550 Extract from my .bashrc: function dospath { local cr=$(echo -e "\r") pushd "$1" > /dev/null 2>&1 # Use command.com to get 8.3 name, # have to remove trailing carriage return echo $(command.com /c cd) | sed -e s#$cr##g popd > /dev/null 2>&1 } function dosname { local p=$(dirname "$1") local dos=$(dospath "$p") local cr=$(echo -e "\r") # Use command.com to get 8.3 name, # have to remove trailing carriage return echo $(dospath "$p")/$(cmd.exe /c dir /x /b $dos\\$(basename "$1")) | sed -e s#$cr##g } Greetings Jörg > -----Original Message----- > From: Jan-Friedrich Mutter [SMTP:mutter AT informatik DOT uni-muenchen DOT de] > Sent: Thursday, September 23, 1999 10:07 AM > To: cygwin AT sourceware DOT cygnus DOT com > Subject: translate UNIX path to DOS path > > Hi, > > is there a program or script available which translates UNIX paths to DOS > paths. > E.g.: > /proj is mounted on D:\rootdir\proj > > When I do a 'pwd' in /proj, I get /proj, but I need D:\rootdir\proj > > Thanks in advance, > Jan. > > Jan-Friedrich Mutter > [http://www.bigfoot.com/~jmutter] > > > > -- > Want to unsubscribe from this list? > Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com