Appending script output to file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Appending script output to file
# 1  
Old 01-01-2011
Appending script output to file

Hi guys,

I have a script from which I would like its standard output results (upon execution) to be appended to a separate file (.txt format). How can I write such a command into the script for this to occur? I know there should be a >> involved somewhere.

Thanks!
# 2  
Old 01-01-2011
As detailed in bash and tcsh and ksh and ...:
Code:
command >> filename

# 3  
Old 01-01-2011
Would this work?

history 1>>output.txt

Please note that all this script is written in NANO.
# 4  
Old 01-01-2011
What editor you use is your choice, and will not (ok, should not) have any affect on the running of the script.
Code:
command >> filename

and
Code:
command 1>> filename

are equivalent in non-csh-based shells.

I have to admit some curiosity, are you attempting to capture the command history?
# 5  
Old 01-01-2011
Quote:
Originally Posted by m.d.ludwig
What editor you use is your choice, and will not (ok, should not) have any affect on the running of the script.
Code:
command >> filename

and
Code:
command 1>> filename

are equivalent in non-csh-based shells.

I have to admit some curiosity, are you attempting to capture the command history?
Hi Ludwig. Yep that's exactly what I'm trying to do. I created a script on nano and at the end of the script, want to create a command which will capture the standard output result from the script (when executed at the terminal) and paste all of it into the output.txt file created.
# 6  
Old 01-01-2011
A history of command is only kept for interactive sessions, it does not capture the commands and subscripts invoked by a script. But you stated:
Quote:
Originally Posted by jjb1989
...will capture the standard output result from the script (when executed at the terminal) and paste all of it into the output.txt file created.
which would be done with command >> filename as I stated above, which appends the standard ouput result from the script (when executed at the terminal) into the specified file. Please note that the standard output of any command is not put into the history file, it is just a stream of data. And there is no "pasting", the data is just going to be added to a file.

There are a few different ways to capture what commands are invoked by a script. The easiest would be run the script in "xtrace" mode, as follows:
Code:
sh -x command 2> command.xtrace >> filename

or by adding the "-x" option to the shebang line at the top of the script.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script appending output of sql query

I am writing the following script to create the file v_out.txt. sqlplus -s /nolog << EOF CONNECT scott/tiger@orcl; whenever sqlerror exit sql.sqlcode; set newpage 0; SET PAGESIZE 0; SET ECHO OFF; SET FEEDBACK OFF; SET HEADING OFF; SET VERIFY OFF; SET LINESIZE 100; set tab off; set... (7 Replies)
Discussion started by: itzkashi
7 Replies

2. Shell Programming and Scripting

Appending output to file

Hi, I want to calculate std dev for a list of files and then print the output appended to an existing file. I have a few folders within the directory Folder, and I am interested in getting the std dev of values in files named as time.txt. In the last pipe, if I print just the sd value, it... (1 Reply)
Discussion started by: jamie_123
1 Replies

3. UNIX for Dummies Questions & Answers

Appending from a file to a script and vice versa

Hi, I am new to Unix and discovered this example problem online that I believe will help my learning: Run the command's below env >> xx env >> xx env >> xx env >> xx env >> xx You will now have a file called XX with the env redirected into it 5 times Create a script named... (2 Replies)
Discussion started by: Jimmy_c
2 Replies

4. UNIX for Dummies Questions & Answers

Appending sed output to variable

I want to append matched output and cat the results into an variable. but I've been running into problems. sed is printing result on to screen instead of appending the output to $CAPTURE. I'm stumped...how should i fix this? contents of $TEST 10.0.0.1 10.0.0.2 10.0.0.3 10.0.0.4 expected... (5 Replies)
Discussion started by: jazzaddict
5 Replies

5. Shell Programming and Scripting

Appending process output into a file

Hello Friends, I'm trying to save process status of root user sorting by CPU usage. However i couldnt save the continuous, standard outputs into a file. Do you have any idea to do it? prstat -u root -a -s cpu | sed -e '/^$/d;/sleep/d;/Total/d' >> stat.txt >ls -l stat.txt -rw-r--r-- 1... (1 Reply)
Discussion started by: EAGL€
1 Replies

6. UNIX for Dummies Questions & Answers

Appending something to output before being written to a file

Hi, I'm quite stuck with what I thought should've been simple but I just can't seem to do it. Firstly, I have the following done in bourne shell: cat datafile | tr '' '' >> newfile echo "$fullfilepath" >> newfile i want to have the output of that echo put on the same line as the output... (4 Replies)
Discussion started by: Darkst
4 Replies

7. Shell Programming and Scripting

Blank Space is not appending in each row of CSV File - Shell Script

I am calling SQL script in my UNIX Shell script and trying to create the CSV file and my last column value of each row is 23 blank spaces. In my SQL script,the last column is like below. RPAD(' ',23,' ') -- Padding 23 blank Spaces The CSV file is generated but the sapce(23 spaces) is... (2 Replies)
Discussion started by: praka
2 Replies

8. Shell Programming and Scripting

capturing line from script output and appending to a file

Hi all, I did some searching in this forum but can't find anything that matches the issue I'm bumping heads with. On a CentOS4/Postfix (and bash everywhere) mail gateway box I run a command periodically to purge the Postfix queue of messages "From:MAILER-DAEMON". This is the one line'r... (6 Replies)
Discussion started by: wally_welder
6 Replies

9. Shell Programming and Scripting

appending to sed output of one file into the middle of file

hi, i have a file file1 file2 ----------- ----------------- aa bbb ccc 111 1111 1111 ddd eee fff 222 3333 4444 ggg hhh... (5 Replies)
Discussion started by: go4desperado
5 Replies
Login or Register to Ask a Question