I was trying to remove all the lines of a file except the last line but the following command did not work, although file.txt is not empty.
$cat file.txt |tail -1 > file.txt
$cat file.txt
Why is it so?
|
|
|
|
|
|
|
Redirecting from a file through a pipeline back to the same file is unsafe; if Do the following instead:
...well, actually, don't do that in production code; particularly if you're in a security-sensitive environment and running as root, the following is more appropriate:
Another approach (avoiding temporary files) is the following:
(The above implementation is bash-specific, but works in cases where echo does not -- such as when the last line contains "--version", for instance). Finally, one can use sponge from moreutils:
|
||||
|
|
|
It seems to not like the fact you're writing it back to the same filename. If you do the following it works:
|
||
|
|
|
|
As Lewis Baumstark says, it doesn't like it that you're writing to the same filename. This is because the shell opens up "file.txt" and truncates it to do the redirection before "cat file.txt" is run. So, you have to
|
||
|
|
|
|
|
||
|
|
|
|
Before 'cat' gets executed, Bash has already opened 'file.txt' for writing, clearing out its contents. In general, don't write to files you're reading from in the same statement. This can be worked around by writing to a different file, as above: $cat file.txt | tail -1 >anotherfile.txt $mv anotherfile.txt file.txtor by using a utility like sponge from moreutils: $cat file.txt | tail -1 | sponge file.txtThis works because sponge waits until its input stream has ended before opening its output file. |
||
|
|
|
|
When you submit your command string to bash, it does the following:
By the time 'cat' starts reading, 'file.txt' has already been truncated by 'tail'. That's all part of the design of Unix and the shell environment, and goes back all the way to the original Bourne shell. 'Tis a feature, not a bug. |
||
|
|
|
|
tmp=$(tail -1 file.txt); echo $tmp > file.txt; |
||
|
|
|
You can use sed to delete all lines but the last from a file:
|
||
|
|