Re: [Beowulf] Odd NFS write issue for commands issued in a script

2020-12-11 Thread Skylar Thompson
Is it possible that /usr/common/tmp/outfile.txt already exists, and the shell has noclobber set? On Tue, Dec 08, 2020 at 05:30:14PM -0800, David Mathog wrote: > Can anybody suggest why a script which causes writes to an NFS mounted > directory like so > >ssh remotenode 'command >/usr/common/t

Re: [Beowulf] Odd NFS write issue for commands issued in a script

2020-12-11 Thread David Mathog
On 8 Dec 2020 17:30:14 -0800 David Mathog wrote Can anybody suggest why a script which causes writes to an NFS mounted directory like so ssh remotenode 'command >/usr/common/tmp/outfile.txt' could somehow fail that write silently, but this variant ssh remotenode 'command >/tmp/outfile;

[Beowulf] Odd NFS write issue for commands issued in a script

2020-12-11 Thread David Mathog
Can anybody suggest why a script which causes writes to an NFS mounted directory like so ssh remotenode 'command >/usr/common/tmp/outfile.txt' could somehow fail that write silently, but this variant ssh remotenode 'command >/tmp/outfile; mv /tmp/outfile /usr/common/tmp/outfile.txt' w