Hello All,
I am wondering what methoreds are allowed for unzipping a zip file under CentOS 5?
How would you do this also? I want to exact a file eo1.zip to /home/dev/www/processing/eo1.lst <-- is the file name which comes from the zip file.
Thanks all for your help.
Sincerely, Christopher
Christopher E wrote:
Hello All,
I am wondering what methoreds are allowed for unzipping a zip file under CentOS 5?
How would you do this also? I want to exact a file eo1.zip to /home/dev/www/processing/eo1.lst <-- is the file name which comes from the zip file.
the 'unzip' command should do it.
Ugo
it says that it can not find this unzip
I am doing this from a termanil till I find the way I want them then I am going to put it in a script
-bash: line 82: unzip: command not found
Help please!
Sincerely, Christopher
On Dec 29, 2007 2:45 PM, Ugo Bellavance ugob@lubik.ca wrote:
Christopher E wrote:
Hello All,
I am wondering what methoreds are allowed for unzipping a zip file under CentOS 5?
How would you do this also? I want to exact a file eo1.zip to /home/dev/www/processing/eo1.lst <-- is the file name which comes from the zip file.
the 'unzip' command should do it.
Ugo
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
try /usr/bin/unzip SOME_FILE
# rpm -q --whatprovides /usr/bin/unzip unzip-5.52-2.2.1
Craig
On Sat, 2007-12-29 at 14:56 -0500, Christopher E wrote:
it says that it can not find this unzip
I am doing this from a termanil till I find the way I want them then I am going to put it in a script
-bash: line 82: unzip: command not found
Help please!
Sincerely, Christopher
On Dec 29, 2007 2:45 PM, Ugo Bellavance ugob@lubik.ca wrote:
Christopher E wrote:
Hello All,
I am wondering what methoreds are allowed for unzipping a zip file under CentOS 5?
How would you do this also? I want to exact a file eo1.zip to /home/dev/www/processing/eo1.lst <-- is the file name which comes from the zip file.
the 'unzip' command should do it.
Ugo
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Hello,
I have tried
/usr/bin/unzip eo1.zip
/home/dev/www$ /usr/bin/unzip eo1.zip -bash: line 88: /usr/bin/unzip: No such file or directory
yes I have no clue of what I am doing, please help :-) ?
Sincerely, Christopher
On Dec 29, 2007 3:03 PM, Craig White craigwhite@azapple.com wrote:
try /usr/bin/unzip SOME_FILE
# rpm -q --whatprovides /usr/bin/unzip unzip-5.52-2.2.1
Craig
On Sat, 2007-12-29 at 14:56 -0500, Christopher E wrote:
it says that it can not find this unzip
I am doing this from a termanil till I find the way I want them then I am going to put it in a script
-bash: line 82: unzip: command not found
Help please!
Sincerely, Christopher
On Dec 29, 2007 2:45 PM, Ugo Bellavance ugob@lubik.ca wrote:
Christopher E wrote:
Hello All,
I am wondering what methoreds are allowed for unzipping a zip file under CentOS 5?
How would you do this also? I want to exact a file eo1.zip to /home/dev/www/processing/eo1.lst <-- is the file name which comes from the zip file.
the 'unzip' command should do it.
Ugo
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
On Sat, 2007-12-29 at 15:11 -0500, Christopher E wrote:
Hello,
I have tried
/usr/bin/unzip eo1.zip
/home/dev/www$ /usr/bin/unzip eo1.zip -bash: line 88: /usr/bin/unzip: No such file or directory
yes I have no clue of what I am doing, please help :-) ?
Sincerely, Christopher
On Dec 29, 2007 3:03 PM, Craig White craigwhite@azapple.com wrote:
try /usr/bin/unzip SOME_FILE
# rpm -q --whatprovides /usr/bin/unzip unzip-5.52-2.2.1
---- the point of this last bit 'rpm -q --whatprovides /usr/bin/unzip' was to indicate if you don't have this file (/usr/bin/unzip) that the package that 'provides' it is unzip
yum install unzip
will install it
Craig