Sponsored Content
Full Discussion: Appending out to a file
Top Forums UNIX for Dummies Questions & Answers Appending out to a file Post 111 by Neo on Friday 20th of October 2000 02:17:38 AM
Old 10-20-2000

When you do an:

ls -i > file

You will completely erase the previous contents.

If you do an:

ls -i >> file

You will append the information to the file.

Your error was in using the > instead of the >>



 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

appending a file

How do I append a header.txt file to files that start with xxx_*.? There are 20 different files that start with xxx_*. Thanks (1 Reply)
Discussion started by: chumba
1 Replies

2. Shell Programming and Scripting

Reading specific contents from a file and appending it to another file

Hi, I need to write a shell script (ksh) to read contents starting at a specific location from one file and append the contents at specific location in another file. Please find below the contents of the source file that I need to read the contents from, File 1 -----# more... (5 Replies)
Discussion started by: dnicky
5 Replies

3. 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

4. Shell Programming and Scripting

Appending in a file

Hi, I have file named Ex.txt which has the contents like this- <FndManagers> Mng={{PID|8819|LB}|75.000000|75.000000} Mng={{PID|25069|ML}|25.000000|0.000000} Mng={{PID|6034033|ML}|0.000000|25.000000} </FndManagers> I have a code which searches for the number 8819 and appends with the... (1 Reply)
Discussion started by: vinay123
1 Replies

5. Shell Programming and Scripting

searching a log file and appending to a .txt file

I'm new to shell scripting and am writing a script to help me log the free memory and hd space on a server. As of now, the script just runs 'df -h' and appends the output to a file and then runs 'top' and appends the output to a log file. What I want to do, is have the script also search the... (3 Replies)
Discussion started by: enator45
3 Replies

6. Shell Programming and Scripting

appending the count of line in each file at head of each file

hello everybody, I have some files in directory.each file contain some data. my requirement is add the count of each line of file in head of each file. any advice !!!!!!!! (4 Replies)
Discussion started by: abhigrkist
4 Replies

7. Shell Programming and Scripting

Appending number of lines in the file to begining of the file

I am having 6 files named file1,file2....file6 and i need to append number of lines in each file to begining of the file. For example, If file 1 contains a b c d then after adding new line file1 should contain 4 a b c d Thanks in advance. (2 Replies)
Discussion started by: akhay_ms
2 Replies

8. Shell Programming and Scripting

Removing part of a file name and appending into a single file

I have two files like ABC_DEF_yyyyymmdd_hhmiss_XXX.txt and ABC_DEF_yyyyymmdd_hhmiss_YYY.txt. The date part is going to be changing everytime. How do i remove this date part of the file and create a single file like ABC_DEF_XXX.txt. (8 Replies)
Discussion started by: varlax
8 Replies

9. Shell Programming and Scripting

Appending to file with new ID

I have a file that looks like this: 1|A 2|B 3|C ... ... 100|A I would like to take the last line in the file and add +1 to the number so the output looks like this 1|A (4 Replies)
Discussion started by: BeefStu
4 Replies

10. Shell Programming and Scripting

Appending content of a file to another file before a specific character

Hi there, i've got a file with this content $ cat file1 Matt Mar The other file has the same number of lines with this content: $ cat file2 20404=767294 23450=32427 is there a way with either using sed, awk or paste to insert the content of file1 before the "=" character? So... (3 Replies)
Discussion started by: nms
3 Replies
curs_clear(3)						     Library Functions Manual						     curs_clear(3)

NAME
curs_clear, clear, wclear, erase, werase, clrtobot, wclrtobot, clrtoeol, wclrtoeol - Clear all or part of a Curses window SYNOPSIS
#include <curses.h> int clear( void ); int wclear( WINDOW *win ); int erase( void ); int werase( WINDOW *win ); int clrtobot( void ); int wclrtobot( WINDOW *win ); int clrtoeol( void ); int wclrtoeol( WINDOW *win ); LIBRARY
Curses Library (libcurses) STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: clear, wclear, erase, werase, clrtobot, wclrtobot, clrtoeol, wclrtoeol: XCURSES4.2 Refer to the standards(5) reference page for more information about industry standards and associated tags. DESCRIPTION
The erase and werase routines copy blanks to every position in the window. The clear and wclear routines are similar to erase and werase but also call clearok. The result is that the screen is cleared completely on the next call to wrefresh for that window and repainted from scratch. The clrtobot and wclrtobot routines erase all lines below the cursor in the window. In addition, these routines erase the current line to the right of the cursor, including the character on which the cursor is positioned. The clrtoeol and wclrtoeol routines erase the current line to the right of the cursor, including the character on which the cursor is posi- tioned. NOTES
The header file <curses.h> automatically includes the header file <stdio.h>. Note that erase, werase, clear, wclear, clrtobot, and clrtoeol may be macros. RETURN VALUES
Upon successful completion, these routines return OK; otherwise, they return ERR. SEE ALSO
Functions: curses(3), curs_outopts(3), curs_refresh(3) Others: standards(5) curs_clear(3)
All times are GMT -4. The time now is 12:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy