Re: problem with bash script loading
of files that had never been intended to be deleted, and so on... And that, if true, would make your consistency argument kind of secondary, so to say (in my opinion, of course). Best regards, Paulo Nogueira
problem with bash script loading
irectory, and then two script files s1 and s2, contents given below (enclosed by '--') s1: -- #!/bin/bash # sleep 3 # \rm -f f1 # exit # -- s2: -- #!/bin/bash # sleep 1 # \rm -f f2 # exit # -- Now execute # touch f1 f2 # ( ./s1 & ) ; sleep 1 ; \cp -f s2 s1 and see f2 d