bh77 wrote:
$> cygcheck unzip
Found: C:\cygwin\bin\unzip.exe
C:/cygwin/bin/unzip.exe
C:\cygwin\bin\cygwin1.dll
C:\WINDOWS\system32\ADVAPI32.DLL
C:\WINDOWS\system32\ntdll.dll
C:\WINDOWS\system32\KERNEL32.dll
C:\WINDOWS\system32\RPCRT4.dll
OK then. Well, I guess it's bac
$> cygcheck unzip
Found: C:\cygwin\bin\unzip.exe
C:/cygwin/bin/unzip.exe
C:\cygwin\bin\cygwin1.dll
C:\WINDOWS\system32\ADVAPI32.DLL
C:\WINDOWS\system32\ntdll.dll
C:\WINDOWS\system32\KERNEL32.dll
C:\WINDOWS\system32\RPCRT4.dll
--
View this message in context:
http://www.nab
bh77 wrote:
I am trying to unzip a file using the following command from a bash script
under cygwin and receive the following error - which looks as though it may
be permissions related. Does anyone have any idea what may be causing it ?
code :
# if the target directory does not exist, create it
e.g unzip -u "${SRC_ZIP}" "**/*.jar" -d "${TARGET_DIR}"
there are no spaces in the directory structure - there are however the
following characters:
-._ (dash, fullstop and underscore)
would any of these have the same effect ?
--
View this message in context:
http://www.nabble.com/checkdir%3A-
On Tue, 20 Jun 2006, bh77 wrote:
> I am trying to unzip a file using the following command from a bash script
> under cygwin and receive the following error - which looks as though it may
> be permissions related. Does anyone have any idea what may be causing it ?
>
> code :
> # if the target dire
sorry that should read
# if the target directory does not exist, create it.
if [ ! -d ${TARGET_DIR} ]
then
echo making target dir
mkdir ${TARGET_DIR}
fi
unzip -u ${SRC_ZIP} "**/*.jar" -d ${TARGET_DIR}
--
View this message in context:
http://www.nabble.com/checkdir%3A--cannot-create-extracti
6 matches
Mail list logo