Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rewrite command line without using find, which is not the same on windows.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 8 Apr 2014 09:23:28 +0000 (11:23 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 8 Apr 2014 11:43:44 +0000 (13:43 +0200)
teshsuite/smpi/TI_output.tesh

index 3ebd982..759f177 100644 (file)
@@ -62,7 +62,7 @@ $ ../../smpi_script/bin/smpirun -ext smpi_replay --log=replay.:critical -trace-t
 > [Jupiter:1:(0) 0.016798] [smpi_replay/INFO] Simulation time 0.016798
 
 ! output sort
 > [Jupiter:1:(0) 0.016798] [smpi_replay/INFO] Simulation time 0.016798
 
 ! output sort
-$ find ./out_ti.txt_files -type f -exec cat {} \;
+$ sh -c "cat ./out_ti.txt_files/*"
 > 0 init
 > 0 send 1 1 1
 > 0 recv 1 1 1
 > 0 init
 > 0 send 1 1 1
 > 0 recv 1 1 1
@@ -85,7 +85,7 @@ $ find ./out_ti.txt_files -type f -exec cat {} \;
 > 3 finalize
 
 ! output sort
 > 3 finalize
 
 ! output sort
-$ find ./out_in_ti.txt_files -type f -exec cat {} \;
+$ sh -c "cat ./out_in_ti.txt_files/*"
 > 0 init
 > 0 send 1 1 1
 > 0 recv 1 1 1
 > 0 init
 > 0 send 1 1 1
 > 0 recv 1 1 1