How can I force a re-evaluation of this each time?
cat > $(date '+%H-%M-%S').log
So that when I first output something it gets written to one file, and after a few seconds I make another ouput and it will be saved in a new file.
cat
just symbolizes a always running program
$(...)
is evaluated each time. – choroba Sep 03 '14 at 10:19-%N
at the end. – choroba Sep 03 '14 at 10:21cat
symbolizes a always running instance of any program. Which is not restarted. – Markus Sep 03 '14 at 10:28cat
- per se? – mikeserv Sep 03 '14 at 10:33