'.
Occasionally it happens that I want to redirect output to a file, but
create that file or overwrite an existing file only if there's actually
new data available. (So I don't want to and cannot use '>' or '>>'.)
Since I haven't seen that feature in shell I usually use awk to achieve
that function by something like
... | awk -v fn="some-file" '{ print > fn }'
On 8/14/22 2:40 PM, Janis Papanagnou wrote:
Occasionally it happens that I want to redirect output to a file,
but create that file or overwrite an existing file only if
there's actually new data available. (So I don't want to and
cannot use '>' or '>>'.)
Since I haven't seen that feature in shell I usually use awk to
achieve that function by something like
... | awk -v fn="some-file" '{ print > fn }'
Does this have any advantage over using a temporary file?
... > temp-file
test -s temp-file && mv temp-file some-file
... | awk -v fn="some-file" '{ print > fn }'
Oğuz <oguzismailuysal@gmail.com>:
On 8/14/22 2:40 PM, Janis Papanagnou wrote:
Occasionally it happens that I want to redirect output to a file, but
create that file or overwrite an existing file only if there's
actually new data available. (So I don't want to and cannot use '>'
or '>>'.)
Since I haven't seen that feature in shell I usually use awk to
achieve that function by something like
... | awk -v fn="some-file" '{ print > fn }'
Does this have any advantage over using a temporary file?
It depends. [...]
[ considerations about access modes ]
I haven't pondered about advantages or disadvantages of the one or
the other option. Here are just a few obvious thoughts I have...
The other point of my post was whether that semantics is already
present in shell in some way I missed, or in some tools;
I wouldn't want to use my own tool if there's already some standard
tool supporting it.
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 443 |
Nodes: | 16 (2 / 14) |
Uptime: | 67:55:05 |
Calls: | 9,194 |
Calls today: | 10 |
Files: | 13,477 |
Messages: | 6,052,509 |