Overwrite


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Overwrite
# 1  
Old 03-24-2001
if i want to pipe output to a file, say,
cat abc.dat > abc.txt, how do i make it replace the existing file?
# 2  
Old 03-24-2001
the greater than ">" symbol always creates or overwrites
the file ">file_name". The double greater than ">>" will
append to the file.
# 3  
Old 03-24-2001
but if i use '>' in a script and the file already exists, it returns an error message saying that file already exists...
# 4  
Old 03-24-2001
Yes, that is because you can't pipe data out of a file and back into itself as you are trying to do. It gives an error because you can't have a file send its contents to itself, overwriting the data it is ending out. This is not the way file I/O is designed. If you want to replace the original file, you pipe the data to a temporary file. When that operation is over, you then replace the original with the temporary file. If kernel designers allowd file descriptors to act as you are wanted to do with one operation, file systems would be corrupted extremely easily, files operations could be circular and grow without limits, etc. There are complexities with file descriptor management and interprocess pipelining. Simple is good, robust and elegant. What you are hoping to do is better done in two shell operations, not one.

# 5  
Old 03-25-2001
If the error message is:
<I>filename</I>: File exists.

Then it sounds like you are using csh or tcsh as your shell.
In this case you have two options to force the overwriting of a file. Either issue the command "unset noclobber", or use the ">!" form of redirection. The first choice will affect all subsequent redirects in your current login. The second is one time only. You can also put "unset noclobber" into your .cshrc if you want it to take affect every time you login.
# 6  
Old 03-26-2001
nono, i don't want to over write the original file...well i guess what's what I wrote, but I meant if I want to use

cat abc.dat > abc.txt

and abc.txt already exists

it gives me an error saying

abc.txt : file already exists

i'm using ksh

Thanks
# 7  
Old 03-26-2001
In ksh the ">|" redirection overrides the noclobber variable. "unset noclobber" should also work, see above.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. SCO

Command line overwrite

is there a way to overwrite what I have typed in rather than having to hit enter and re enter the command? SCO UNIX 3.2.4.2 (14 Replies)
Discussion started by: steveo314
14 Replies

2. UNIX for Dummies Questions & Answers

[Solved] Suppress do you wish to overwrite (y or n)?

Hi all, as i have to deal every day with .log and also .csv files, i would like to know if there is any way to suppress "do you wish to overwrite (y or n)?" prompt with the option no for all prompts, the command i usually run is the following, find... (2 Replies)
Discussion started by: charli1
2 Replies

3. Shell Programming and Scripting

Better to Delete or Overwrite

Hello All, I had just a question about my Bash Script I'm currently writing. The script I have writes some text to a output file. After I write to the output file I send the file to another server to do some stuff with it. After the file sends in the script, I don't need the output/txt... (4 Replies)
Discussion started by: mrm5102
4 Replies

4. Shell Programming and Scripting

overwrite only if both files are the same size

Dear users, I've been looking for a way to overwrite files only if both have the same size, how could I do this? any help is very appreciated. Best regards, Gery (5 Replies)
Discussion started by: Gery
5 Replies

5. UNIX for Advanced & Expert Users

linux overwrite directory

How do you overwrite a directory with another directory? I know you can delete your directory then copy your directory over, but I would think there would be a way to do this in one step. (5 Replies)
Discussion started by: cokedude
5 Replies

6. UNIX for Dummies Questions & Answers

overwrite problem

my script is: awk '...mycode...' file1.txt > file2.txt and i want to overwrite file2.txt eachtime I run this script. but it says:File exists! :( I have tried awk '...mycode...' file1.txt >| file2.txt but it again says:Missing name for redirect! :confused::confused: what is this? (2 Replies)
Discussion started by: gc_sw
2 Replies

7. Shell Programming and Scripting

sed command to overwrite

Hi, i have a file ver.sql with the following contents , Here i need to put a in the next line of END statment . So iam doing the following D:\>type ver.sql begin ctxsys.driimp.set_value('STOP_WORD','yours'); ctxsys.driimp.set_object('STORAGE','BASIC_STORAGE',2);... (1 Reply)
Discussion started by: mhdmehraj
1 Replies

8. Shell Programming and Scripting

Files overwrite in awk

Hi guys, I checked the knowledge base before posting this question. is there any way by which you can ALWAYS ALLOW file overwrite in AWK?. i.e. an option similar to noclobber in Korn shell. I don't to check for files existence and remove them. (1 Reply)
Discussion started by: Moon Noon
1 Replies

9. UNIX for Dummies Questions & Answers

overwrite problem

Hi im using the following to copy a file to a directory, the user being prompted to overwrite if the file already exists in that directory, cp -i myfile /home/brief/bin2 but this reveals the path of the directory when being prompted to overwrite (below) cp: overwrite... (2 Replies)
Discussion started by: ali999
2 Replies
Login or Register to Ask a Question