Sponsored Content
Top Forums Shell Programming and Scripting Seeking assistance in Shell script Post 302888001 by vinil on Wednesday 12th of February 2014 07:15:31 AM
Old 02-12-2014
Wrench [Solved] Seeking assistance in Shell script

Code:
#!/bin/bash
>error_log
for s in `cat s.txt`
do
uptime $s >>error_log
echo $s >>error_log
done

The above code produce output with server name and its uptime in 2 different lines .My requirement is to have the same in one line . Please assist
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

seeking help with shell script

I am trying to update a script which I had created to monitor tablespace usage. Originally the sql spooled out to a text file anything with more than 75% used. I have been asked to change this. Now the sql must spool out all tablespaces. The script I have to write should scan the file for... (4 Replies)
Discussion started by: Niadh
4 Replies

2. Shell Programming and Scripting

Need a little assistance with a shell script

I need to modify a script to send an attatched file. I have researched and read the faq's but have not found a solution for my script. Here is a copy of the code I am using: #!/bin/sh mysqldump --opt --skip-add-locks --user=****** --password=******* databasename | gzip >... (3 Replies)
Discussion started by: rickou812
3 Replies

3. Shell Programming and Scripting

shell script assistance please

When I run this command (showstatus <username> <dbname>) in the prompt, the following will be displayed in the screen: 1. Show processes 2. Start process 3. Stop process 4. Go back to prompt Once i choose/type Option "1" (which is Show processes), it will display the list of processes... (5 Replies)
Discussion started by: xinoo
5 Replies

4. Shell Programming and Scripting

Seeking for help in writing shell

Hi All, I got a problem and stuck to filter a log file, called it as "sample.log". This "sample.log" file is being generated by "script A". The "sample.log" look like below: :FORMATDATE_FORMATTIME:CmdArg->:SomeDoce:SomeFormatDocument: :FORMATDATE_FORMATTIME:imprtcp succeeded.... (1 Reply)
Discussion started by: anakiar
1 Replies

5. Shell Programming and Scripting

Shell Script Assistance

I am looking for a shell script or command to automate a process of opening many files in a directory and changing a string of text. Example: I have a apache web server that uses virtual hosting. There are approximately 2300 vhost entries or files. So in the directory... (2 Replies)
Discussion started by: jaysunn
2 Replies

6. Shell Programming and Scripting

Need assistance with simple shell script to organize files. [Code attached]

I need some help with this shell script for class. All it does is organize your files. It works, but in the log file, it needs to show the new filepaths of the moved files. Heres my log of my output: Starting to organize... movie2.wmv --> movie3.mov --> movie1.mpg --> song1.mp3 --> ... (3 Replies)
Discussion started by: ryandamartini
3 Replies

7. UNIX for Dummies Questions & Answers

Assistance with shell script to check file type and move to a folder.

Hi, Below is some code that I would like to implement however I am getting these errors: (what I am attempting to do is to check if a zip file has ascii files and if ascii and not binary then move the ascii files to a folder. some of the files are in xml format but are ascii and i will be moving... (0 Replies)
Discussion started by: bwcberb
0 Replies

8. UNIX for Dummies Questions & Answers

need assistance on Calling DB user from separate file in Shell script

Hi All, I need to execute a SQL via shell script and i am connecting to Oracle DB by this way $USERNAME1/$PASSWORD1@$STRING1 and i need to get username, password and string from someother file stored in the Unix Directory. $Username, $Password and $String is stored in File A in Path A and i want... (1 Reply)
Discussion started by: sathish.tn
1 Replies

9. Shell Programming and Scripting

Shell script assistance Urgent

write a script using shift and case to receive 11 argument and do the following --arg1 - print hello message and the current proccess id --arg2 - read and edit a file based on the value which came along with the arg2. --arg3 - validate whether all... (1 Reply)
Discussion started by: saku
1 Replies
ERROR_LOG(3)								 1							      ERROR_LOG(3)

error_log - Send an error message to the defined error handling routines

SYNOPSIS
bool error_log (string $message, [int $message_type], [string $destination], [string $extra_headers]) DESCRIPTION
Sends an error message to the web server's error log or to a file. PARAMETERS
o $message - The error message that should be logged. o $message_type - Says where the error should go. The possible message types are as follows: error_log(3) log types +--+---------------------------------------------------+ |0 | | | | | | | $message is sent to PHP's system logger, using | | | the Operating System's system logging mechanism | | | or a file, depending on what the error_log con- | | | figuration directive is set to. This is the | | | default option. | | | | |1 | | | | | | | $message is sent by email to the address in the | | | $destination parameter. This is the only message | | | type where the fourth parameter, $extra_headers | | | is used. | | | | |2 | | | | | | | No longer an option. | | | | |3 | | | | | | | $message is appended to the file $destination. A | | | newline is not automatically added to the end of | | | the $message string. | | | | |4 | | | | | | | $message is sent directly to the SAPI logging | | | handler. | | | | +--+---------------------------------------------------+ o $destination - The destination. Its meaning depends on the $message_type parameter as described above. o $extra_headers - The extra headers. It's used when the $message_type parameter is set to 1. This message type uses the same internal function as mail(3) does. RETURN VALUES
Returns TRUE on success or FALSE on failure. NOTES
Warning error_log(3) is not binary safe. $message will be truncated by null character. Tip $message should not contain null character. Note that $message may be sent to file, mail, syslog, etc. Use appropriate conver- sion/escape function, base64_encode(3), rawurlencode(3) or addslashes(3) before calling error_log(3). EXAMPLES
Example #1 error_log(3) examples <?php // Send notification through the server log if we can not // connect to the database. if (!Ora_Logon($username, $password)) { error_log("Oracle database not available!", 0); } // Notify administrator by email if we run out of FOO if (!($foo = allocate_new_foo())) { error_log("Big trouble, we're all out of FOOs!", 1, "operator@example.com"); } // another way to call error_log(): error_log("You messed up!", 3, "/var/tmp/my-errors.log"); ?> CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.2.7 | | | | | | | The possible value of 4 was added to $mes- | | | sage_type. | | | | +--------+---------------------------------------------------+ PHP Documentation Group ERROR_LOG(3)
All times are GMT -4. The time now is 07:56 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy