0

So I need to benchmark a program that I wrote, and for some reason, my professor asked to benchmark it against an execline script. After 3 hours, I still have no clue how to do execline scripting. could someone please transfer this bash script into execline script ?

cat f1 | sort | tr a-z A-Z >f2
4

1 回答 1

1
#!/command/execlineb

pipeline { cat f1 } pipeline { sort } redirfd -w 1 f2 tr a-z A-Z

正如你在这里看到的: http: //skarnet.org/software/execline/pipeline.html 和这里:http ://skarnet.org/software/execline/redirfd.html

于 2016-08-24T01:25:26.540 回答