02-08-2010
I've checked with MD5Checksum, the codes are different. How to get the entire file?
However, the jakarta-tomcat-5.0.30.tar.gz can be decompressed. Does it affect the performance in Solaris?
Last edited by sbox; 02-08-2010 at 04:55 AM..
10 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
Hi,
While uncompress , gunzip filename.cpio.gz getting the fg. error
gunzip: filename.cpio.gz: unexpected end of file.
Whats the problem?
Size of this .gz file is 660mb .
Thanks, (1 Reply)
Discussion started by: Dolly
1 Replies
2. Shell Programming and Scripting
what do u mean by " 'end of file' unexpected "?
i am running a script called "s1" which internally calls "s2"
now s1 starts running & at a point (where it is suppose to call "s2")
i get a message
'end of file' unexpected....
& my script(s) are not working..
any ideas on this?
regards... (4 Replies)
Discussion started by: abhijeetkul
4 Replies
3. UNIX for Advanced & Expert Users
Ok, I sent several gzipped files using the UNIX "mail" utility without any special settings (bad idea). When I saved these files from my mail and tried to gunzip them, I would get something like the following error:
gunzip: wmGrep.mel.gz: unexpected end of file
Ok, I messed up. But is it... (4 Replies)
Discussion started by: sicjedi
4 Replies
4. Shell Programming and Scripting
This is the script
path=/oracle/ora10gdb/sample
archive=/oracle/ora10gdb/archive
cd $path
for i in `ls`;do
mv $i $archive
Done
Please tell me why it is givind this error (2 Replies)
Discussion started by: dineshr85
2 Replies
5. Shell Programming and Scripting
hi
i have error like this' syntax error end of file unexecpeted.and give me the example of cut command
as soon as possible: (1 Reply)
Discussion started by: naveeng.81
1 Replies
6. Shell Programming and Scripting
HI,
I was converting a .bat file to .sh file for unix
Code snippet
#!/usr/bin/sh
set -x
if then
goto RegularBuild;
CURDIR="$1";
cd "$CURDIR";
:RegularBuild
echo "Checking for existing fip_help.properties in def/properties directory..."
if then
rm -f fip_help.properties;
... (1 Reply)
Discussion started by: srisreeku
1 Replies
7. Shell Programming and Scripting
HELP PLEASE!!
I am running this script, and i keep getting the error 'end of file' unexpected. I know that usually means parenthesis or whatever is out of place but i cant find anything!! I am new to scripting and i put some "print" staements in and it is not getting past the first IF statment... (7 Replies)
Discussion started by: weatherman0516
7 Replies
8. Shell Programming and Scripting
I am getting a "line 47: syntax error: unexpected end of file", why? According to my estimate, line 47 is 2 lines after the last line of code here. Also, the $1 variable represents the current user logging in, and the script runs with root privileges (This is a Mac OS login hook script using... (5 Replies)
Discussion started by: glev2005
5 Replies
9. Shell Programming and Scripting
Hi,
On adding below code to my script shows the error on executing else script works fine.
sqlplus $user_name/$password <<EOL
truncate table order;
commit;
truncate table order_hist;
commit;
insert into order(ID,TRAN,CUST_NAME,OPT_VAL) select * from order_bkp;
insert into... (5 Replies)
Discussion started by: milink
5 Replies
10. Shell Programming and Scripting
Hello,
I have another problem with my script. Please accept my apologies, but I am really nooby in sh scripts. I am writing it for first time.
My script:
returned=`tail -50 SapLogs.log | grep -i "Error"`
echo $returned
if ; then
echo "There is no errors in the logs"
fi
And after... (10 Replies)
Discussion started by: jedzio
10 Replies
BPM(1) BSD General Commands Manual BPM(1)
NAME
bpm -- menu-based binary package manager
SYNOPSIS
bpm [-hnVv] [-b baseURL] [-m machine] [-r release] [-w seconds]
DESCRIPTION
The bpm command is used to locate and install binary packages from any reachable URL.
The following command-line options are supported:
-b baseURL
Specify a base URL from which to download binary packages. The default URL is ftp://ftp.NetBSD.org/pub/pkgsrc/packages.
-h Print a help message and then exit.
-m machine
Use machine as the machine architecture to be used, instead of that returned by uname(1).
-n Don't actually execute the commands to add the package.
-r release
Use release as the operating system release to be used, instead of that returned by uname(1).
-V Print version number and exit.
-v Turn on verbose output.
-w seconds
The number of seconds to wait after displaying an error message and returning to normal menu operations.
bpm provides a menu-based binary package manager for NetBSD. bpm first connects to the URL using ftp(1), and displays a list of categories
for which binary packages exist. If no categories are displayed, it could be that the machine architecture or operating system release
string have been wrongly interpreted, and that it will be necessary to override this values by means of the command line options. Within a
category, a list of packages will be displayed, and by selecting one using the number assigned to it, the package will be downloaded automat-
ically, and installed, using the pkg_add(1) utility. It is also possible to change the category currently being examined, and to quit from
the utility, simply by selecting the appropriate choices on the menu.
ENVIRONMENT
The environment variables which govern the behavior of ftp(1) and pkg_add(1) are valid for bpm.
SEE ALSO
ftp(1), pkg_add(1), uname(1)
AUTHORS
The bpm utility was written by Alistair Crooks <agc@NetBSD.org>.
BSD
August 3, 2007 BSD