diff --git a/compiler/gather_results.py b/compiler/gather_results.py index 37d7bd01c..84d1b7347 100644 --- a/compiler/gather_results.py +++ b/compiler/gather_results.py @@ -10,23 +10,25 @@ import matplotlib.lines as pltlines import matplotlib.ticker as plticker -parser = argparse.ArgumentParser(description='Produce plots from various experiments with PaSh.') -parser.add_argument('--eurosys2021', - action='store_true', - help='generates the plots for all the experiments in the EuroSys2021 paper') -parser.add_argument('--all', - action='store_true', - help='generates all plots') - -args = parser.parse_args() - -if args.all is True: - args.eurosys2021 = True - -if not args.all and not args.eurosys2021: - print("You have to specify some plot to generate!") - print("See command usage with --help.") - exit(0) +def parse_args(): + parser = argparse.ArgumentParser(description='Produce plots from various experiments with PaSh.') + parser.add_argument('--eurosys2021', + action='store_true', + help='generates the plots for all the experiments in the EuroSys2021 paper') + parser.add_argument('--all', + action='store_true', + help='generates all plots') + + args = parser.parse_args() + + if args.all is True: + args.eurosys2021 = True + + if not args.all and not args.eurosys2021: + print("You have to specify some plot to generate!") + print("See command usage with --help.") + exit(0) + return args SMALL_SIZE = 16 MEDIUM_SIZE = 18 @@ -1526,147 +1528,150 @@ def any_wrong(correctness, experiment, line_plots): return False -## Set the fonts to be larger -SMALL_SIZE = 22 -MEDIUM_SIZE = 24 -BIGGER_SIZE = 30 - -plt.rc('font', size=SMALL_SIZE) # controls default text sizes -plt.rc('axes', titlesize=MEDIUM_SIZE) # fontsize of the axes title -plt.rc('axes', labelsize=MEDIUM_SIZE) # fontsize of the x and y labels -plt.rc('xtick', labelsize=SMALL_SIZE) # fontsize of the tick labels -plt.rc('ytick', labelsize=SMALL_SIZE) # fontsize of the tick labels -plt.rc('legend', fontsize=SMALL_SIZE) # legend fontsize -plt.rc('figure', titlesize=BIGGER_SIZE) # fontsize of the figure title -# Plot microbenchmarks -diff_results = [] -all_scaleup_numbers = [2, 4, 8, 16, 32, 64] -all_experiment_results = {} -all_sequential_results = {} -correctness = {} -for experiment in all_experiments: - all_speedup_results, output_diff, sequential_time = collect_scaleup_line_speedups(experiment, all_scaleup_numbers, RESULTS) - all_experiment_results[experiment] = all_speedup_results - all_sequential_results[experiment] = sequential_time - correctness[experiment] = output_diff - -small_one_liners_scaleup_numbers = [2, 16] -small_one_liner_results = {} -for experiment in all_experiments: - small_speedup_results, _, sequential_time = collect_scaleup_line_speedups(experiment, small_one_liners_scaleup_numbers, SMALL_RESULTS) - small_one_liner_results[experiment] = small_speedup_results - - -## Make a report of all one-liners -report_all_one_liners(all_scaleup_numbers, all_experiment_results, correctness) - -## Legacy unix50 results -if args.all: - unix50_results, unix50_results_fan_in = collect_all_unix50_results(UNIX50_RESULTS) - -## Collect all unix50 results -if args.eurosys2021: - small_unix50_results, _ = collect_all_unix50_results(SMALL_UNIX50_RESULTS, scaleup_numbers=[4], suffix='distr_auto_split.time') - big_unix50_results, _ = collect_all_unix50_results(BIG_UNIX50_RESULTS, scaleup_numbers=[16], suffix='distr_auto_split.time') +if __name__ == "__main__": + args = parse_args() + ## Set the fonts to be larger + SMALL_SIZE = 22 + MEDIUM_SIZE = 24 + BIGGER_SIZE = 30 -## -## Theory Paper -## -coarse_experiments = ["minimal_grep", - "minimal_sort", - "topn", - "wf", - "spell", - "bigrams", - "diff", - "set-diff", - "shortest_scripts"] - -if args.all: - plot_less_one_liners_tiling(all_experiment_results, all_sequential_results, - coarse_experiments, (unix50_results, unix50_results_fan_in)) - generate_tex_coarse_table(coarse_experiments) - # collect_unix50_coarse_scaleup_times(unix50_results) + plt.rc('font', size=SMALL_SIZE) # controls default text sizes + plt.rc('axes', titlesize=MEDIUM_SIZE) # fontsize of the axes title + plt.rc('axes', labelsize=MEDIUM_SIZE) # fontsize of the x and y labels + plt.rc('xtick', labelsize=SMALL_SIZE) # fontsize of the tick labels + plt.rc('ytick', labelsize=SMALL_SIZE) # fontsize of the tick labels + plt.rc('legend', fontsize=SMALL_SIZE) # legend fontsize + plt.rc('figure', titlesize=BIGGER_SIZE) # fontsize of the figure title + # Plot microbenchmarks + diff_results = [] + all_scaleup_numbers = [2, 4, 8, 16, 32, 64] + all_experiment_results = {} + all_sequential_results = {} + correctness = {} + for experiment in all_experiments: + all_speedup_results, output_diff, sequential_time = collect_scaleup_line_speedups(experiment, all_scaleup_numbers, RESULTS) + all_experiment_results[experiment] = all_speedup_results + all_sequential_results[experiment] = sequential_time + correctness[experiment] = output_diff -## -## Systems Paper -## -experiments = ["minimal_grep", - "minimal_sort", - "topn", - "wf", - "spell", - "diff", - "bigrams", - "set-diff", - "double_sort", - "shortest_scripts"] - -## Large inputs `-l` -custom_scaleup_plots = {"minimal_grep" : ["eager", "blocking-eager"], - "minimal_sort": ["eager", "blocking-eager", "no-eager"], - "topn": ["eager", "blocking-eager", "no-eager"], - "wf": ["eager", "blocking-eager", "no-eager"], - "spell" : ["split", "eager"], - "diff" : ["eager", "blocking-eager", "no-eager"], - "bigrams" : ["split", "eager"], - "set-diff" : ["eager", "blocking-eager", "no-eager"], - "double_sort" : ["split", "eager", "blocking-eager", "no-eager"], - "shortest_scripts" : ["eager", "blocking-eager", "no-eager"]} - -if args.eurosys2021: - plot_one_liners_tiling(all_experiment_results, experiments, custom_scaleup_plots) - -## Medium input `-m` -medium_custom_scaleup_plots = {"minimal_grep" : ["split", "blocking-eager"], - "minimal_sort": ["split", "blocking-eager", "no-eager"], - "topn": ["split", "blocking-eager", "no-eager"], - "wf": ["split", "blocking-eager", "no-eager"], - "spell" : ["split", "eager"], - "diff" : ["split", "blocking-eager", "no-eager"], - "bigrams" : ["split", "eager"], - "set-diff" : ["split", "blocking-eager", "no-eager"], - "double_sort" : ["split", "eager", "blocking-eager", "no-eager"], - "shortest_scripts" : ["split", "blocking-eager", "no-eager"]} - - -if args.eurosys2021: - plot_one_liners_tiling(small_one_liner_results, experiments, - medium_custom_scaleup_plots, - all_scaleup_numbers=small_one_liners_scaleup_numbers, - prefix="medium_") - -## Small input `-s` -small_custom_scaleup_plots = {"minimal_grep" : ["split"], - "minimal_sort": ["split"], - "topn": ["split"], - "wf": ["split"], - "spell" : ["split"], - "diff" : ["split"], - "bigrams" : ["split"], - "set-diff" : ["split"], - "double_sort" : ["split"], - "shortest_scripts" : ["split"]} - -if args.eurosys2021: - plot_one_liners_tiling(small_one_liner_results, experiments, - small_custom_scaleup_plots, - all_scaleup_numbers=small_one_liners_scaleup_numbers, - prefix="small_") - -if args.eurosys2021: - generate_tex_table(experiments) - collect_unix50_scaleup_times(small_unix50_results, scaleup=[4], small_prefix="_1GB") - collect_unix50_scaleup_times(big_unix50_results, scaleup=[16], small_prefix="_10GB") - plot_sort_with_baseline(RESULTS) - -## Legacy plots -if args.all: - collect_unix50_scaleup_times(unix50_results) - - -## Format and print correctness results -if args.all: - format_correctness(correctness) + small_one_liners_scaleup_numbers = [2, 16] + small_one_liner_results = {} + for experiment in all_experiments: + small_speedup_results, _, sequential_time = collect_scaleup_line_speedups(experiment, small_one_liners_scaleup_numbers, SMALL_RESULTS) + small_one_liner_results[experiment] = small_speedup_results + + + ## Make a report of all one-liners + report_all_one_liners(all_scaleup_numbers, all_experiment_results, correctness) + + ## Legacy unix50 results + if args.all: + unix50_results, unix50_results_fan_in = collect_all_unix50_results(UNIX50_RESULTS) + + ## Collect all unix50 results + if args.eurosys2021: + small_unix50_results, _ = collect_all_unix50_results(SMALL_UNIX50_RESULTS, scaleup_numbers=[4], suffix='distr_auto_split.time') + big_unix50_results, _ = collect_all_unix50_results(BIG_UNIX50_RESULTS, scaleup_numbers=[16], suffix='distr_auto_split.time') + + ## + ## Theory Paper + ## + coarse_experiments = ["minimal_grep", + "minimal_sort", + "topn", + "wf", + "spell", + "bigrams", + "diff", + "set-diff", + "shortest_scripts"] + + if args.all: + plot_less_one_liners_tiling(all_experiment_results, all_sequential_results, + coarse_experiments, (unix50_results, unix50_results_fan_in)) + generate_tex_coarse_table(coarse_experiments) + # collect_unix50_coarse_scaleup_times(unix50_results) + + + ## + ## Systems Paper + ## + experiments = ["minimal_grep", + "minimal_sort", + "topn", + "wf", + "spell", + "diff", + "bigrams", + "set-diff", + "double_sort", + "shortest_scripts"] + + ## Large inputs `-l` + custom_scaleup_plots = {"minimal_grep" : ["eager", "blocking-eager"], + "minimal_sort": ["eager", "blocking-eager", "no-eager"], + "topn": ["eager", "blocking-eager", "no-eager"], + "wf": ["eager", "blocking-eager", "no-eager"], + "spell" : ["split", "eager"], + "diff" : ["eager", "blocking-eager", "no-eager"], + "bigrams" : ["split", "eager"], + "set-diff" : ["eager", "blocking-eager", "no-eager"], + "double_sort" : ["split", "eager", "blocking-eager", "no-eager"], + "shortest_scripts" : ["eager", "blocking-eager", "no-eager"]} + + if args.eurosys2021: + plot_one_liners_tiling(all_experiment_results, experiments, custom_scaleup_plots) + + ## Medium input `-m` + medium_custom_scaleup_plots = {"minimal_grep" : ["split", "blocking-eager"], + "minimal_sort": ["split", "blocking-eager", "no-eager"], + "topn": ["split", "blocking-eager", "no-eager"], + "wf": ["split", "blocking-eager", "no-eager"], + "spell" : ["split", "eager"], + "diff" : ["split", "blocking-eager", "no-eager"], + "bigrams" : ["split", "eager"], + "set-diff" : ["split", "blocking-eager", "no-eager"], + "double_sort" : ["split", "eager", "blocking-eager", "no-eager"], + "shortest_scripts" : ["split", "blocking-eager", "no-eager"]} + + + if args.eurosys2021: + plot_one_liners_tiling(small_one_liner_results, experiments, + medium_custom_scaleup_plots, + all_scaleup_numbers=small_one_liners_scaleup_numbers, + prefix="medium_") + + ## Small input `-s` + small_custom_scaleup_plots = {"minimal_grep" : ["split"], + "minimal_sort": ["split"], + "topn": ["split"], + "wf": ["split"], + "spell" : ["split"], + "diff" : ["split"], + "bigrams" : ["split"], + "set-diff" : ["split"], + "double_sort" : ["split"], + "shortest_scripts" : ["split"]} + + if args.eurosys2021: + plot_one_liners_tiling(small_one_liner_results, experiments, + small_custom_scaleup_plots, + all_scaleup_numbers=small_one_liners_scaleup_numbers, + prefix="small_") + + if args.eurosys2021: + generate_tex_table(experiments) + collect_unix50_scaleup_times(small_unix50_results, scaleup=[4], small_prefix="_1GB") + collect_unix50_scaleup_times(big_unix50_results, scaleup=[16], small_prefix="_10GB") + plot_sort_with_baseline(RESULTS) + + ## Legacy plots + if args.all: + collect_unix50_scaleup_times(unix50_results) + + + ## Format and print correctness results + if args.all: + format_correctness(correctness) diff --git a/evaluation/multi-instance-experiment/.gitignore b/evaluation/multi-instance-experiment/.gitignore new file mode 100644 index 000000000..5ed2501ca --- /dev/null +++ b/evaluation/multi-instance-experiment/.gitignore @@ -0,0 +1,2 @@ +results/* +!archive/plots/*.pdf diff --git a/evaluation/multi-instance-experiment/archive/plots/one_liners.pdf b/evaluation/multi-instance-experiment/archive/plots/one_liners.pdf new file mode 100644 index 000000000..f930561b4 Binary files /dev/null and b/evaluation/multi-instance-experiment/archive/plots/one_liners.pdf differ diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_16_distr.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_16_distr.time new file mode 100644 index 000000000..67ac3d04c --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_16_distr.time @@ -0,0 +1,114 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_TqhpnnVc6y +(1) Bash variables saved in: /tmp/pash_TqhpnnVc6y +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: bigrams_aux +|-- (['stdin'], ['stdout'], []) +class: pure found for: bigrams_aux +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Compilation time: 287.285 ms +Total nodes after optimization: 6 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.312 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: bigrams_aux +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +Backend time: 12.999 ms +Optimized script saved in: /tmp/pash_axmnDmDzkD +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_TqhpnnVc6y +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_axmnDmDzkD: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ bigrams_aux <"#file21" >"#file23" & } +{ sort <"#file23" >"#file25" & } +{ uniq <"#file25" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (5702) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_mKuONyjtbL +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pJzRg88Hkj +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 71221.644 ms +(7) Recovering BaSh variables from: /tmp/pash_pJzRg88Hkj +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_mKuONyjtbL +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_adyqmdye +Preprocessing time: 27.264 ms + +real 1m11.931s +user 1m16.377s +sys 0m6.593s +Files /home/nikos/dish/evaluation//small_intermediary//bigrams_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_16_distr_auto_split.time new file mode 100644 index 000000000..7089600fa --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_16_distr_auto_split.time @@ -0,0 +1,2116 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_wqa4lvmh/pash_oV4TywsA0l +(1) Bash variables saved in: /tmp/pash_wqa4lvmh/pash_oV4TywsA0l +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_wqa4lvmh/tmp42e13daq ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: bigrams_aux +|-- (['stdin'], ['stdout'], []) +class: pure found for: bigrams_aux +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Compilation time: 70.627 ms +Total nodes after optimization: 284 + -- out of which: +Cat nodes: 4 +Eager nodes: 181 +Optimization time: 9.881 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file19, #file28, #file29, #file30, #file31, #file32, #file33, #file34, #file35, #file36, #file37, #file38, #file39, #file40, #file41, #file42, #file43], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: bigram_aux_map +|-- ([#file45, #file61, #file62, #file63], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file46, #file64, #file65, #file66], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file47, #file67, #file68, #file69], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file48, #file70, #file71, #file72], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file49, #file73, #file74, #file75], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file50, #file76, #file77, #file78], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file51, #file79, #file80, #file81], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file52, #file82, #file83, #file84], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file53, #file85, #file86, #file87], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file54, #file88, #file89, #file90], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file55, #file91, #file92, #file93], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file56, #file94, #file95, #file96], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file57, #file97, #file98, #file99], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file58, #file100, #file101, #file102], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file59, #file103, #file104, #file105], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file60, #file106, #file107, #file108], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file254, #file255, #file256, #file257, #file258, #file259, #file109, #file110, #file111], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file260, #file261, #file262, #file263, #file264, #file265, #file112, #file113, #file114], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file266, #file267, #file268, #file269, #file270, #file271, #file115, #file116, #file117], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file272, #file273, #file274, #file275, #file276, #file277, #file118, #file119, #file120], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file278, #file279, #file280, #file281, #file282, #file283, #file121, #file122, #file123], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file284, #file285, #file286, #file287, #file288, #file289, #file124, #file125, #file126], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file290, #file291, #file292, #file293, #file294, #file295, #file127, #file128, #file129], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file296, #file297, #file298, #file299, #file300, #file301, #file130, #file131, #file132], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file302, #file303, #file304, #file305, #file306, #file307, #file133, #file134, #file135], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file308, #file309, #file310, #file311, #file312, #file313, #file136, #file137, #file138], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file314, #file315, #file316, #file317, #file318, #file319, #file139, #file140, #file141], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file320, #file321, #file322, #file323, #file324, #file325, #file142, #file143, #file144], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file326, #file327, #file328, #file329, #file330, #file331, #file145, #file146, #file147], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file332, #file333, #file334, #file335, #file336, #file337, #file148, #file149, #file150], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file338, #file339, #file340, #file341, #file342, #file343, #file23, #file152, #file153], []) +arguments, redirs found for: cat +|-- ([#file152], [['File', ['To', 1, [['C', 47], ['C', 100], ['C', 101], ['C', 118], ['C', 47], ['C', 110], ['C', 117], ['C', 108], ['C', 108]]]]]) +arguments, redirs found for: cat +|-- ([#file153], [['File', ['To', 1, [['C', 47], ['C', 100], ['C', 101], ['C', 118], ['C', 47], ['C', 110], ['C', 117], ['C', 108], ['C', 108]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file23, #file156, #file157, #file158, #file159, #file160, #file161, #file162, #file163, #file164, #file165, #file166, #file167, #file168, #file169, #file170, #file171], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file359, #file360], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file361, #file362], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file363, #file364], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file365, #file366], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file367, #file368], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file369, #file370], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file371, #file372], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file373, #file374], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file375, #file376], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file377, #file378], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file379, #file380], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file381, #file382], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file383, #file384], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file385, #file386], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file387, #file388], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file25, #file204, #file205, #file206, #file207, #file208, #file209, #file210, #file211, #file212, #file213, #file214, #file215, #file216, #file217, #file218, #file219], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: cat +|-- ([#file404, #file405, #file406, #file407, #file408, #file409, #file410, #file411, #file412, #file413, #file414, #file415, #file416, #file417, #file418, #file419], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file239], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file240], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file241], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file31, #file242], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file32, #file243], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file244], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file245], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file246], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file247], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file37, #file248], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file249], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file250], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file251], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file252], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file253], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file61, #file254], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file62, #file255], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file256], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file257], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file258], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file259], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file260], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file68, #file261], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file69, #file262], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file70, #file263], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file71, #file264], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file72, #file265], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file73, #file266], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file74, #file267], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file75, #file268], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file76, #file269], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file77, #file270], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file271], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file272], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file273], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file274], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file275], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file276], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file277], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file278], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file86, #file279], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file87, #file280], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file281], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file282], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file283], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file284], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file285], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file93, #file286], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file287], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file288], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file289], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file290], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file291], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file292], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file293], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file294], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file295], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file296], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file297], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file298], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file299], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file300], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file301], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file302], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file303], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file304], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file305], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file306], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file307], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file308], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file309], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file310], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file311], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file312], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file313], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file314], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file315], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file316], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file317], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file318], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file319], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file320], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file321], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file322], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file323], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file324], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file325], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file326], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file327], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file328], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file329], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file330], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file331], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file332], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file333], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file141, #file334], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file142, #file335], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file143, #file336], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file144, #file337], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file145, #file338], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file146, #file339], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file147, #file340], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file148, #file341], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file149, #file342], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file150, #file343], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file156, #file344], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file157, #file345], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file158, #file346], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file159, #file347], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file160, #file348], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file161, #file349], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file162, #file350], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file163, #file351], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file164, #file352], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file165, #file353], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file166, #file354], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file167, #file355], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file168, #file356], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file169, #file357], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file170, #file358], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file173, #file359], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file174, #file360], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file175, #file361], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file176, #file362], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file177, #file363], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file178, #file364], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file179, #file365], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file180, #file366], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file181, #file367], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file182, #file368], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file183, #file369], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file184, #file370], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file185, #file371], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file186, #file372], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file187, #file373], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file188, #file374], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file189, #file375], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file190, #file376], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file191, #file377], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file192, #file378], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file193, #file379], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file194, #file380], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file195, #file381], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file196, #file382], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file197, #file383], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file198, #file384], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file199, #file385], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file200, #file386], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file201, #file387], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file202, #file388], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file204, #file389], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file205, #file390], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file206, #file391], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file207, #file392], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file208, #file393], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file209, #file394], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file210, #file395], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file211, #file396], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file212, #file397], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file213, #file398], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file214, #file399], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file215, #file400], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file216, #file401], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file217, #file402], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file218, #file403], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file221, #file404], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file222, #file405], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file223, #file406], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file224, #file407], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file225, #file408], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file226, #file409], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file227, #file410], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file228, #file411], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file229, #file412], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file230, #file413], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file231, #file414], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file232, #file415], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file233, #file416], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file234, #file417], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file235, #file418], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file236, #file419], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 55]]]]]]]) +Backend time: 73.591 ms +Optimized script saved in: /tmp/pash_wqa4lvmh/pash_p3plBC12TX +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_wqa4lvmh/pash_oV4TywsA0l +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_wqa4lvmh/pash_p3plBC12TX: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +rm -f "#file232" +rm -f "#file233" +rm -f "#file234" +rm -f "#file235" +rm -f "#file236" +rm -f "#file237" +rm -f "#file238" +rm -f "#file239" +rm -f "#file240" +rm -f "#file241" +rm -f "#file242" +rm -f "#file243" +rm -f "#file244" +rm -f "#file245" +rm -f "#file246" +rm -f "#file247" +rm -f "#file248" +rm -f "#file249" +rm -f "#file250" +rm -f "#file251" +rm -f "#file252" +rm -f "#file253" +rm -f "#file254" +rm -f "#file255" +rm -f "#file256" +rm -f "#file257" +rm -f "#file258" +rm -f "#file259" +rm -f "#file260" +rm -f "#file261" +rm -f "#file262" +rm -f "#file263" +rm -f "#file264" +rm -f "#file265" +rm -f "#file266" +rm -f "#file267" +rm -f "#file268" +rm -f "#file269" +rm -f "#file270" +rm -f "#file271" +rm -f "#file272" +rm -f "#file273" +rm -f "#file274" +rm -f "#file275" +rm -f "#file276" +rm -f "#file277" +rm -f "#file278" +rm -f "#file279" +rm -f "#file280" +rm -f "#file281" +rm -f "#file282" +rm -f "#file283" +rm -f "#file284" +rm -f "#file285" +rm -f "#file286" +rm -f "#file287" +rm -f "#file288" +rm -f "#file289" +rm -f "#file290" +rm -f "#file291" +rm -f "#file292" +rm -f "#file293" +rm -f "#file294" +rm -f "#file295" +rm -f "#file296" +rm -f "#file297" +rm -f "#file298" +rm -f "#file299" +rm -f "#file300" +rm -f "#file301" +rm -f "#file302" +rm -f "#file303" +rm -f "#file304" +rm -f "#file305" +rm -f "#file306" +rm -f "#file307" +rm -f "#file308" +rm -f "#file309" +rm -f "#file310" +rm -f "#file311" +rm -f "#file312" +rm -f "#file313" +rm -f "#file314" +rm -f "#file315" +rm -f "#file316" +rm -f "#file317" +rm -f "#file318" +rm -f "#file319" +rm -f "#file320" +rm -f "#file321" +rm -f "#file322" +rm -f "#file323" +rm -f "#file324" +rm -f "#file325" +rm -f "#file326" +rm -f "#file327" +rm -f "#file328" +rm -f "#file329" +rm -f "#file330" +rm -f "#file331" +rm -f "#file332" +rm -f "#file333" +rm -f "#file334" +rm -f "#file335" +rm -f "#file336" +rm -f "#file337" +rm -f "#file338" +rm -f "#file339" +rm -f "#file340" +rm -f "#file341" +rm -f "#file342" +rm -f "#file343" +rm -f "#file344" +rm -f "#file345" +rm -f "#file346" +rm -f "#file347" +rm -f "#file348" +rm -f "#file349" +rm -f "#file350" +rm -f "#file351" +rm -f "#file352" +rm -f "#file353" +rm -f "#file354" +rm -f "#file355" +rm -f "#file356" +rm -f "#file357" +rm -f "#file358" +rm -f "#file359" +rm -f "#file360" +rm -f "#file361" +rm -f "#file362" +rm -f "#file363" +rm -f "#file364" +rm -f "#file365" +rm -f "#file366" +rm -f "#file367" +rm -f "#file368" +rm -f "#file369" +rm -f "#file370" +rm -f "#file371" +rm -f "#file372" +rm -f "#file373" +rm -f "#file374" +rm -f "#file375" +rm -f "#file376" +rm -f "#file377" +rm -f "#file378" +rm -f "#file379" +rm -f "#file380" +rm -f "#file381" +rm -f "#file382" +rm -f "#file383" +rm -f "#file384" +rm -f "#file385" +rm -f "#file386" +rm -f "#file387" +rm -f "#file388" +rm -f "#file389" +rm -f "#file390" +rm -f "#file391" +rm -f "#file392" +rm -f "#file393" +rm -f "#file394" +rm -f "#file395" +rm -f "#file396" +rm -f "#file397" +rm -f "#file398" +rm -f "#file399" +rm -f "#file400" +rm -f "#file401" +rm -f "#file402" +rm -f "#file403" +rm -f "#file404" +rm -f "#file405" +rm -f "#file406" +rm -f "#file407" +rm -f "#file408" +rm -f "#file409" +rm -f "#file410" +rm -f "#file411" +rm -f "#file412" +rm -f "#file413" +rm -f "#file414" +rm -f "#file415" +rm -f "#file416" +rm -f "#file417" +rm -f "#file418" +rm -f "#file419" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +mkfifo "#file220" +mkfifo "#file221" +mkfifo "#file222" +mkfifo "#file223" +mkfifo "#file224" +mkfifo "#file225" +mkfifo "#file226" +mkfifo "#file227" +mkfifo "#file228" +mkfifo "#file229" +mkfifo "#file230" +mkfifo "#file231" +mkfifo "#file232" +mkfifo "#file233" +mkfifo "#file234" +mkfifo "#file235" +mkfifo "#file236" +mkfifo "#file237" +mkfifo "#file238" +mkfifo "#file239" +mkfifo "#file240" +mkfifo "#file241" +mkfifo "#file242" +mkfifo "#file243" +mkfifo "#file244" +mkfifo "#file245" +mkfifo "#file246" +mkfifo "#file247" +mkfifo "#file248" +mkfifo "#file249" +mkfifo "#file250" +mkfifo "#file251" +mkfifo "#file252" +mkfifo "#file253" +mkfifo "#file254" +mkfifo "#file255" +mkfifo "#file256" +mkfifo "#file257" +mkfifo "#file258" +mkfifo "#file259" +mkfifo "#file260" +mkfifo "#file261" +mkfifo "#file262" +mkfifo "#file263" +mkfifo "#file264" +mkfifo "#file265" +mkfifo "#file266" +mkfifo "#file267" +mkfifo "#file268" +mkfifo "#file269" +mkfifo "#file270" +mkfifo "#file271" +mkfifo "#file272" +mkfifo "#file273" +mkfifo "#file274" +mkfifo "#file275" +mkfifo "#file276" +mkfifo "#file277" +mkfifo "#file278" +mkfifo "#file279" +mkfifo "#file280" +mkfifo "#file281" +mkfifo "#file282" +mkfifo "#file283" +mkfifo "#file284" +mkfifo "#file285" +mkfifo "#file286" +mkfifo "#file287" +mkfifo "#file288" +mkfifo "#file289" +mkfifo "#file290" +mkfifo "#file291" +mkfifo "#file292" +mkfifo "#file293" +mkfifo "#file294" +mkfifo "#file295" +mkfifo "#file296" +mkfifo "#file297" +mkfifo "#file298" +mkfifo "#file299" +mkfifo "#file300" +mkfifo "#file301" +mkfifo "#file302" +mkfifo "#file303" +mkfifo "#file304" +mkfifo "#file305" +mkfifo "#file306" +mkfifo "#file307" +mkfifo "#file308" +mkfifo "#file309" +mkfifo "#file310" +mkfifo "#file311" +mkfifo "#file312" +mkfifo "#file313" +mkfifo "#file314" +mkfifo "#file315" +mkfifo "#file316" +mkfifo "#file317" +mkfifo "#file318" +mkfifo "#file319" +mkfifo "#file320" +mkfifo "#file321" +mkfifo "#file322" +mkfifo "#file323" +mkfifo "#file324" +mkfifo "#file325" +mkfifo "#file326" +mkfifo "#file327" +mkfifo "#file328" +mkfifo "#file329" +mkfifo "#file330" +mkfifo "#file331" +mkfifo "#file332" +mkfifo "#file333" +mkfifo "#file334" +mkfifo "#file335" +mkfifo "#file336" +mkfifo "#file337" +mkfifo "#file338" +mkfifo "#file339" +mkfifo "#file340" +mkfifo "#file341" +mkfifo "#file342" +mkfifo "#file343" +mkfifo "#file344" +mkfifo "#file345" +mkfifo "#file346" +mkfifo "#file347" +mkfifo "#file348" +mkfifo "#file349" +mkfifo "#file350" +mkfifo "#file351" +mkfifo "#file352" +mkfifo "#file353" +mkfifo "#file354" +mkfifo "#file355" +mkfifo "#file356" +mkfifo "#file357" +mkfifo "#file358" +mkfifo "#file359" +mkfifo "#file360" +mkfifo "#file361" +mkfifo "#file362" +mkfifo "#file363" +mkfifo "#file364" +mkfifo "#file365" +mkfifo "#file366" +mkfifo "#file367" +mkfifo "#file368" +mkfifo "#file369" +mkfifo "#file370" +mkfifo "#file371" +mkfifo "#file372" +mkfifo "#file373" +mkfifo "#file374" +mkfifo "#file375" +mkfifo "#file376" +mkfifo "#file377" +mkfifo "#file378" +mkfifo "#file379" +mkfifo "#file380" +mkfifo "#file381" +mkfifo "#file382" +mkfifo "#file383" +mkfifo "#file384" +mkfifo "#file385" +mkfifo "#file386" +mkfifo "#file387" +mkfifo "#file388" +mkfifo "#file389" +mkfifo "#file390" +mkfifo "#file391" +mkfifo "#file392" +mkfifo "#file393" +mkfifo "#file394" +mkfifo "#file395" +mkfifo "#file396" +mkfifo "#file397" +mkfifo "#file398" +mkfifo "#file399" +mkfifo "#file400" +mkfifo "#file401" +mkfifo "#file402" +mkfifo "#file403" +mkfifo "#file404" +mkfifo "#file405" +mkfifo "#file406" +mkfifo "#file407" +mkfifo "#file408" +mkfifo "#file409" +mkfifo "#file410" +mkfifo "#file411" +mkfifo "#file412" +mkfifo "#file413" +mkfifo "#file414" +mkfifo "#file415" +mkfifo "#file416" +mkfifo "#file417" +mkfifo "#file418" +mkfifo "#file419" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file19" "#file28" "#file29" "#file30" "#file31" "#file32" "#file33" "#file34" "#file35" "#file36" "#file37" "#file38" "#file39" "#file40" "#file41" "#file42" "#file43" & } +{ tr A-Z a-z <"#file239" >"#file45" & } +{ tr A-Z a-z <"#file240" >"#file46" & } +{ tr A-Z a-z <"#file241" >"#file47" & } +{ tr A-Z a-z <"#file242" >"#file48" & } +{ tr A-Z a-z <"#file243" >"#file49" & } +{ tr A-Z a-z <"#file244" >"#file50" & } +{ tr A-Z a-z <"#file245" >"#file51" & } +{ tr A-Z a-z <"#file246" >"#file52" & } +{ tr A-Z a-z <"#file247" >"#file53" & } +{ tr A-Z a-z <"#file248" >"#file54" & } +{ tr A-Z a-z <"#file249" >"#file55" & } +{ tr A-Z a-z <"#file250" >"#file56" & } +{ tr A-Z a-z <"#file251" >"#file57" & } +{ tr A-Z a-z <"#file252" >"#file58" & } +{ tr A-Z a-z <"#file253" >"#file59" & } +{ tr A-Z a-z <"#file43" >"#file60" & } +{ bigram_aux_map "#file45" "#file61" "#file62" "#file63" & } +{ bigram_aux_map "#file46" "#file64" "#file65" "#file66" & } +{ bigram_aux_map "#file47" "#file67" "#file68" "#file69" & } +{ bigram_aux_map "#file48" "#file70" "#file71" "#file72" & } +{ bigram_aux_map "#file49" "#file73" "#file74" "#file75" & } +{ bigram_aux_map "#file50" "#file76" "#file77" "#file78" & } +{ bigram_aux_map "#file51" "#file79" "#file80" "#file81" & } +{ bigram_aux_map "#file52" "#file82" "#file83" "#file84" & } +{ bigram_aux_map "#file53" "#file85" "#file86" "#file87" & } +{ bigram_aux_map "#file54" "#file88" "#file89" "#file90" & } +{ bigram_aux_map "#file55" "#file91" "#file92" "#file93" & } +{ bigram_aux_map "#file56" "#file94" "#file95" "#file96" & } +{ bigram_aux_map "#file57" "#file97" "#file98" "#file99" & } +{ bigram_aux_map "#file58" "#file100" "#file101" "#file102" & } +{ bigram_aux_map "#file59" "#file103" "#file104" "#file105" & } +{ bigram_aux_map "#file60" "#file106" "#file107" "#file108" & } +{ bigram_aux_reduce "#file254" "#file255" "#file256" "#file257" "#file258" "#file259" "#file109" "#file110" "#file111" & } +{ bigram_aux_reduce "#file260" "#file261" "#file262" "#file263" "#file264" "#file265" "#file112" "#file113" "#file114" & } +{ bigram_aux_reduce "#file266" "#file267" "#file268" "#file269" "#file270" "#file271" "#file115" "#file116" "#file117" & } +{ bigram_aux_reduce "#file272" "#file273" "#file274" "#file275" "#file276" "#file277" "#file118" "#file119" "#file120" & } +{ bigram_aux_reduce "#file278" "#file279" "#file280" "#file281" "#file282" "#file283" "#file121" "#file122" "#file123" & } +{ bigram_aux_reduce "#file284" "#file285" "#file286" "#file287" "#file288" "#file289" "#file124" "#file125" "#file126" & } +{ bigram_aux_reduce "#file290" "#file291" "#file292" "#file293" "#file294" "#file295" "#file127" "#file128" "#file129" & } +{ bigram_aux_reduce "#file296" "#file297" "#file298" "#file299" "#file300" "#file301" "#file130" "#file131" "#file132" & } +{ bigram_aux_reduce "#file302" "#file303" "#file304" "#file305" "#file306" "#file307" "#file133" "#file134" "#file135" & } +{ bigram_aux_reduce "#file308" "#file309" "#file310" "#file311" "#file312" "#file313" "#file136" "#file137" "#file138" & } +{ bigram_aux_reduce "#file314" "#file315" "#file316" "#file317" "#file318" "#file319" "#file139" "#file140" "#file141" & } +{ bigram_aux_reduce "#file320" "#file321" "#file322" "#file323" "#file324" "#file325" "#file142" "#file143" "#file144" & } +{ bigram_aux_reduce "#file326" "#file327" "#file328" "#file329" "#file330" "#file331" "#file145" "#file146" "#file147" & } +{ bigram_aux_reduce "#file332" "#file333" "#file334" "#file335" "#file336" "#file337" "#file148" "#file149" "#file150" & } +{ bigram_aux_reduce "#file338" "#file339" "#file340" "#file341" "#file342" "#file343" "#file23" "#file152" "#file153" & } +{ cat "#file152" >/dev/null & } +{ cat "#file153" >/dev/null & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file23" "#file156" "#file157" "#file158" "#file159" "#file160" "#file161" "#file162" "#file163" "#file164" "#file165" "#file166" "#file167" "#file168" "#file169" "#file170" "#file171" & } +{ sort <"#file344" >"#file173" & } +{ sort <"#file345" >"#file174" & } +{ sort <"#file346" >"#file175" & } +{ sort <"#file347" >"#file176" & } +{ sort <"#file348" >"#file177" & } +{ sort <"#file349" >"#file178" & } +{ sort <"#file350" >"#file179" & } +{ sort <"#file351" >"#file180" & } +{ sort <"#file352" >"#file181" & } +{ sort <"#file353" >"#file182" & } +{ sort <"#file354" >"#file183" & } +{ sort <"#file355" >"#file184" & } +{ sort <"#file356" >"#file185" & } +{ sort <"#file357" >"#file186" & } +{ sort <"#file358" >"#file187" & } +{ sort <"#file171" >"#file188" & } +{ sort -m "#file359" "#file360" >"#file189" & } +{ sort -m "#file361" "#file362" >"#file190" & } +{ sort -m "#file363" "#file364" >"#file191" & } +{ sort -m "#file365" "#file366" >"#file192" & } +{ sort -m "#file367" "#file368" >"#file193" & } +{ sort -m "#file369" "#file370" >"#file194" & } +{ sort -m "#file371" "#file372" >"#file195" & } +{ sort -m "#file373" "#file374" >"#file196" & } +{ sort -m "#file375" "#file376" >"#file197" & } +{ sort -m "#file377" "#file378" >"#file198" & } +{ sort -m "#file379" "#file380" >"#file199" & } +{ sort -m "#file381" "#file382" >"#file200" & } +{ sort -m "#file383" "#file384" >"#file201" & } +{ sort -m "#file385" "#file386" >"#file202" & } +{ sort -m "#file387" "#file388" >"#file25" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file25" "#file204" "#file205" "#file206" "#file207" "#file208" "#file209" "#file210" "#file211" "#file212" "#file213" "#file214" "#file215" "#file216" "#file217" "#file218" "#file219" & } +{ uniq <"#file389" >"#file221" & } +{ uniq <"#file390" >"#file222" & } +{ uniq <"#file391" >"#file223" & } +{ uniq <"#file392" >"#file224" & } +{ uniq <"#file393" >"#file225" & } +{ uniq <"#file394" >"#file226" & } +{ uniq <"#file395" >"#file227" & } +{ uniq <"#file396" >"#file228" & } +{ uniq <"#file397" >"#file229" & } +{ uniq <"#file398" >"#file230" & } +{ uniq <"#file399" >"#file231" & } +{ uniq <"#file400" >"#file232" & } +{ uniq <"#file401" >"#file233" & } +{ uniq <"#file402" >"#file234" & } +{ uniq <"#file403" >"#file235" & } +{ uniq <"#file219" >"#file236" & } +{ cat "#file404" "#file405" "#file406" "#file407" "#file408" "#file409" "#file410" "#file411" "#file412" "#file413" "#file414" "#file415" "#file416" "#file417" "#file418" "#file419" >"#file237" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file239" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file240" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file241" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file31" "#file242" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file32" "#file243" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file244" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file245" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file246" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file247" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file37" "#file248" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file249" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file250" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file251" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file252" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file253" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file61" "#file254" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file62" "#file255" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file256" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file257" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file258" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file259" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file260" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file68" "#file261" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file69" "#file262" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file70" "#file263" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file71" "#file264" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file72" "#file265" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file73" "#file266" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file74" "#file267" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file75" "#file268" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file76" "#file269" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file77" "#file270" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file271" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file272" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file273" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file274" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file275" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file276" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file277" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file278" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file86" "#file279" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file87" "#file280" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file281" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file282" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file283" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file284" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file285" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file93" "#file286" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file287" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file288" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file289" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file290" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file291" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file292" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file293" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file294" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file295" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file296" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file297" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file298" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file299" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file300" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file301" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file302" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file303" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file304" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file305" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file306" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file307" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file308" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file309" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file310" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file311" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file312" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file313" "/tmp/pash_eager_intermediate_#file75" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file314" "/tmp/pash_eager_intermediate_#file76" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file315" "/tmp/pash_eager_intermediate_#file77" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file316" "/tmp/pash_eager_intermediate_#file78" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file317" "/tmp/pash_eager_intermediate_#file79" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file318" "/tmp/pash_eager_intermediate_#file80" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file319" "/tmp/pash_eager_intermediate_#file81" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file320" "/tmp/pash_eager_intermediate_#file82" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file321" "/tmp/pash_eager_intermediate_#file83" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file322" "/tmp/pash_eager_intermediate_#file84" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file323" "/tmp/pash_eager_intermediate_#file85" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file324" "/tmp/pash_eager_intermediate_#file86" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file325" "/tmp/pash_eager_intermediate_#file87" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file326" "/tmp/pash_eager_intermediate_#file88" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file327" "/tmp/pash_eager_intermediate_#file89" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file328" "/tmp/pash_eager_intermediate_#file90" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file329" "/tmp/pash_eager_intermediate_#file91" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file330" "/tmp/pash_eager_intermediate_#file92" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file331" "/tmp/pash_eager_intermediate_#file93" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file332" "/tmp/pash_eager_intermediate_#file94" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file333" "/tmp/pash_eager_intermediate_#file95" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file141" "#file334" "/tmp/pash_eager_intermediate_#file96" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file142" "#file335" "/tmp/pash_eager_intermediate_#file97" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file143" "#file336" "/tmp/pash_eager_intermediate_#file98" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file144" "#file337" "/tmp/pash_eager_intermediate_#file99" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file145" "#file338" "/tmp/pash_eager_intermediate_#file100" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file146" "#file339" "/tmp/pash_eager_intermediate_#file101" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file147" "#file340" "/tmp/pash_eager_intermediate_#file102" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file148" "#file341" "/tmp/pash_eager_intermediate_#file103" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file149" "#file342" "/tmp/pash_eager_intermediate_#file104" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file150" "#file343" "/tmp/pash_eager_intermediate_#file105" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file156" "#file344" "/tmp/pash_eager_intermediate_#file106" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file157" "#file345" "/tmp/pash_eager_intermediate_#file107" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file158" "#file346" "/tmp/pash_eager_intermediate_#file108" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file159" "#file347" "/tmp/pash_eager_intermediate_#file109" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file160" "#file348" "/tmp/pash_eager_intermediate_#file110" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file161" "#file349" "/tmp/pash_eager_intermediate_#file111" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file162" "#file350" "/tmp/pash_eager_intermediate_#file112" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file163" "#file351" "/tmp/pash_eager_intermediate_#file113" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file164" "#file352" "/tmp/pash_eager_intermediate_#file114" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file165" "#file353" "/tmp/pash_eager_intermediate_#file115" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file166" "#file354" "/tmp/pash_eager_intermediate_#file116" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file167" "#file355" "/tmp/pash_eager_intermediate_#file117" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file168" "#file356" "/tmp/pash_eager_intermediate_#file118" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file169" "#file357" "/tmp/pash_eager_intermediate_#file119" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file170" "#file358" "/tmp/pash_eager_intermediate_#file120" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file173" "#file359" "/tmp/pash_eager_intermediate_#file121" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file174" "#file360" "/tmp/pash_eager_intermediate_#file122" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file175" "#file361" "/tmp/pash_eager_intermediate_#file123" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file176" "#file362" "/tmp/pash_eager_intermediate_#file124" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file177" "#file363" "/tmp/pash_eager_intermediate_#file125" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file178" "#file364" "/tmp/pash_eager_intermediate_#file126" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file179" "#file365" "/tmp/pash_eager_intermediate_#file127" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file180" "#file366" "/tmp/pash_eager_intermediate_#file128" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file181" "#file367" "/tmp/pash_eager_intermediate_#file129" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file182" "#file368" "/tmp/pash_eager_intermediate_#file130" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file183" "#file369" "/tmp/pash_eager_intermediate_#file131" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file184" "#file370" "/tmp/pash_eager_intermediate_#file132" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file185" "#file371" "/tmp/pash_eager_intermediate_#file133" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file186" "#file372" "/tmp/pash_eager_intermediate_#file134" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file187" "#file373" "/tmp/pash_eager_intermediate_#file135" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file188" "#file374" "/tmp/pash_eager_intermediate_#file136" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file189" "#file375" "/tmp/pash_eager_intermediate_#file137" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file190" "#file376" "/tmp/pash_eager_intermediate_#file138" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file191" "#file377" "/tmp/pash_eager_intermediate_#file139" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file192" "#file378" "/tmp/pash_eager_intermediate_#file140" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file193" "#file379" "/tmp/pash_eager_intermediate_#file141" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file194" "#file380" "/tmp/pash_eager_intermediate_#file142" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file195" "#file381" "/tmp/pash_eager_intermediate_#file143" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file196" "#file382" "/tmp/pash_eager_intermediate_#file144" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file197" "#file383" "/tmp/pash_eager_intermediate_#file145" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file198" "#file384" "/tmp/pash_eager_intermediate_#file146" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file199" "#file385" "/tmp/pash_eager_intermediate_#file147" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file200" "#file386" "/tmp/pash_eager_intermediate_#file148" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file201" "#file387" "/tmp/pash_eager_intermediate_#file149" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file202" "#file388" "/tmp/pash_eager_intermediate_#file150" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file204" "#file389" "/tmp/pash_eager_intermediate_#file151" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file205" "#file390" "/tmp/pash_eager_intermediate_#file152" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file206" "#file391" "/tmp/pash_eager_intermediate_#file153" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file207" "#file392" "/tmp/pash_eager_intermediate_#file154" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file208" "#file393" "/tmp/pash_eager_intermediate_#file155" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file209" "#file394" "/tmp/pash_eager_intermediate_#file156" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file210" "#file395" "/tmp/pash_eager_intermediate_#file157" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file211" "#file396" "/tmp/pash_eager_intermediate_#file158" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file212" "#file397" "/tmp/pash_eager_intermediate_#file159" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file213" "#file398" "/tmp/pash_eager_intermediate_#file160" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file214" "#file399" "/tmp/pash_eager_intermediate_#file161" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file215" "#file400" "/tmp/pash_eager_intermediate_#file162" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file216" "#file401" "/tmp/pash_eager_intermediate_#file163" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file217" "#file402" "/tmp/pash_eager_intermediate_#file164" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file218" "#file403" "/tmp/pash_eager_intermediate_#file165" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file221" "#file404" "/tmp/pash_eager_intermediate_#file166" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file222" "#file405" "/tmp/pash_eager_intermediate_#file167" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file223" "#file406" "/tmp/pash_eager_intermediate_#file168" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file224" "#file407" "/tmp/pash_eager_intermediate_#file169" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file225" "#file408" "/tmp/pash_eager_intermediate_#file170" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file226" "#file409" "/tmp/pash_eager_intermediate_#file171" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file227" "#file410" "/tmp/pash_eager_intermediate_#file172" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file228" "#file411" "/tmp/pash_eager_intermediate_#file173" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file229" "#file412" "/tmp/pash_eager_intermediate_#file174" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file230" "#file413" "/tmp/pash_eager_intermediate_#file175" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file231" "#file414" "/tmp/pash_eager_intermediate_#file176" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file232" "#file415" "/tmp/pash_eager_intermediate_#file177" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file233" "#file416" "/tmp/pash_eager_intermediate_#file178" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file234" "#file417" "/tmp/pash_eager_intermediate_#file179" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file235" "#file418" "/tmp/pash_eager_intermediate_#file180" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file236" "#file419" "/tmp/pash_eager_intermediate_#file181" & } +{ uniq <"#file237" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +rm -f "#file232" +rm -f "#file233" +rm -f "#file234" +rm -f "#file235" +rm -f "#file236" +rm -f "#file237" +rm -f "#file238" +rm -f "#file239" +rm -f "#file240" +rm -f "#file241" +rm -f "#file242" +rm -f "#file243" +rm -f "#file244" +rm -f "#file245" +rm -f "#file246" +rm -f "#file247" +rm -f "#file248" +rm -f "#file249" +rm -f "#file250" +rm -f "#file251" +rm -f "#file252" +rm -f "#file253" +rm -f "#file254" +rm -f "#file255" +rm -f "#file256" +rm -f "#file257" +rm -f "#file258" +rm -f "#file259" +rm -f "#file260" +rm -f "#file261" +rm -f "#file262" +rm -f "#file263" +rm -f "#file264" +rm -f "#file265" +rm -f "#file266" +rm -f "#file267" +rm -f "#file268" +rm -f "#file269" +rm -f "#file270" +rm -f "#file271" +rm -f "#file272" +rm -f "#file273" +rm -f "#file274" +rm -f "#file275" +rm -f "#file276" +rm -f "#file277" +rm -f "#file278" +rm -f "#file279" +rm -f "#file280" +rm -f "#file281" +rm -f "#file282" +rm -f "#file283" +rm -f "#file284" +rm -f "#file285" +rm -f "#file286" +rm -f "#file287" +rm -f "#file288" +rm -f "#file289" +rm -f "#file290" +rm -f "#file291" +rm -f "#file292" +rm -f "#file293" +rm -f "#file294" +rm -f "#file295" +rm -f "#file296" +rm -f "#file297" +rm -f "#file298" +rm -f "#file299" +rm -f "#file300" +rm -f "#file301" +rm -f "#file302" +rm -f "#file303" +rm -f "#file304" +rm -f "#file305" +rm -f "#file306" +rm -f "#file307" +rm -f "#file308" +rm -f "#file309" +rm -f "#file310" +rm -f "#file311" +rm -f "#file312" +rm -f "#file313" +rm -f "#file314" +rm -f "#file315" +rm -f "#file316" +rm -f "#file317" +rm -f "#file318" +rm -f "#file319" +rm -f "#file320" +rm -f "#file321" +rm -f "#file322" +rm -f "#file323" +rm -f "#file324" +rm -f "#file325" +rm -f "#file326" +rm -f "#file327" +rm -f "#file328" +rm -f "#file329" +rm -f "#file330" +rm -f "#file331" +rm -f "#file332" +rm -f "#file333" +rm -f "#file334" +rm -f "#file335" +rm -f "#file336" +rm -f "#file337" +rm -f "#file338" +rm -f "#file339" +rm -f "#file340" +rm -f "#file341" +rm -f "#file342" +rm -f "#file343" +rm -f "#file344" +rm -f "#file345" +rm -f "#file346" +rm -f "#file347" +rm -f "#file348" +rm -f "#file349" +rm -f "#file350" +rm -f "#file351" +rm -f "#file352" +rm -f "#file353" +rm -f "#file354" +rm -f "#file355" +rm -f "#file356" +rm -f "#file357" +rm -f "#file358" +rm -f "#file359" +rm -f "#file360" +rm -f "#file361" +rm -f "#file362" +rm -f "#file363" +rm -f "#file364" +rm -f "#file365" +rm -f "#file366" +rm -f "#file367" +rm -f "#file368" +rm -f "#file369" +rm -f "#file370" +rm -f "#file371" +rm -f "#file372" +rm -f "#file373" +rm -f "#file374" +rm -f "#file375" +rm -f "#file376" +rm -f "#file377" +rm -f "#file378" +rm -f "#file379" +rm -f "#file380" +rm -f "#file381" +rm -f "#file382" +rm -f "#file383" +rm -f "#file384" +rm -f "#file385" +rm -f "#file386" +rm -f "#file387" +rm -f "#file388" +rm -f "#file389" +rm -f "#file390" +rm -f "#file391" +rm -f "#file392" +rm -f "#file393" +rm -f "#file394" +rm -f "#file395" +rm -f "#file396" +rm -f "#file397" +rm -f "#file398" +rm -f "#file399" +rm -f "#file400" +rm -f "#file401" +rm -f "#file402" +rm -f "#file403" +rm -f "#file404" +rm -f "#file405" +rm -f "#file406" +rm -f "#file407" +rm -f "#file408" +rm -f "#file409" +rm -f "#file410" +rm -f "#file411" +rm -f "#file412" +rm -f "#file413" +rm -f "#file414" +rm -f "#file415" +rm -f "#file416" +rm -f "#file417" +rm -f "#file418" +rm -f "#file419"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_wqa4lvmh/pash_2z78GRjJ8A +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_wqa4lvmh/pash_VwufqEY0wg +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 14197.376 ms +(7) Recovering BaSh variables from: /tmp/pash_wqa4lvmh/pash_VwufqEY0wg +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_wqa4lvmh/pash_2z78GRjJ8A +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_wqa4lvmh/tmpcsfgpg_o +Preprocessing time: 4.835 ms + +real 0m14.587s +user 1m9.408s +sys 0m15.315s +Files /home/ubuntu/pash/evaluation//small_intermediary//bigrams_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_2_distr.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_2_distr.time new file mode 100644 index 000000000..74310d34e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_2_distr.time @@ -0,0 +1,100 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_0itaOez5WE +(1) Bash variables saved in: /tmp/pash_0itaOez5WE +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: bigrams_aux +|-- (['stdin'], ['stdout'], []) +class: pure found for: bigrams_aux +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Compilation time: 39.018 ms +Total nodes after optimization: 6 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.341 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: bigrams_aux +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +Backend time: 9.812 ms +Optimized script saved in: /tmp/pash_MC2plouRM3 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_0itaOez5WE +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_MC2plouRM3: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ bigrams_aux <"#file7" >"#file9" & } +{ sort <"#file9" >"#file11" & } +{ uniq <"#file11" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (5062) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_BP9h04ZRfi +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_QrAqPebl3n +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 71392.607 ms +(7) Recovering BaSh variables from: /tmp/pash_QrAqPebl3n +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_BP9h04ZRfi +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_jbnifflq +Preprocessing time: 27.941 ms + +real 1m11.844s +user 1m16.204s +sys 0m6.329s +Files /home/nikos/dish/evaluation//small_intermediary//bigrams_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_2_distr_auto_split.time new file mode 100644 index 000000000..f7de4ba75 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_2_distr_auto_split.time @@ -0,0 +1,296 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_v1oz0a9y/pash_hiIs1aXEy3 +(1) Bash variables saved in: /tmp/pash_v1oz0a9y/pash_hiIs1aXEy3 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_v1oz0a9y/tmppv_p_yuw ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: bigrams_aux +|-- (['stdin'], ['stdout'], []) +class: pure found for: bigrams_aux +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Compilation time: 9.701 ms +Total nodes after optimization: 32 + -- out of which: +Cat nodes: 4 +Eager nodes: 13 +Optimization time: 2.437 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file5, #file14, #file15], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: bigram_aux_map +|-- ([#file17, #file19, #file20, #file21], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file18, #file22, #file23, #file24], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file44, #file45, #file46, #file47, #file48, #file49, #file9, #file26, #file27], []) +arguments, redirs found for: cat +|-- ([#file26], [['File', ['To', 1, [['C', 47], ['C', 100], ['C', 101], ['C', 118], ['C', 47], ['C', 110], ['C', 117], ['C', 108], ['C', 108]]]]]) +arguments, redirs found for: cat +|-- ([#file27], [['File', ['To', 1, [['C', 47], ['C', 100], ['C', 101], ['C', 118], ['C', 47], ['C', 110], ['C', 117], ['C', 108], ['C', 108]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file9, #file30, #file31], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file51, #file52], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file11, #file36, #file37], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: cat +|-- ([#file54, #file55], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file14, #file43], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file19, #file44], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file20, #file45], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file21, #file46], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file22, #file47], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file23, #file48], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file24, #file49], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file50], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file51], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file52], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file53], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file54], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file55], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +Backend time: 6.934 ms +Optimized script saved in: /tmp/pash_v1oz0a9y/pash_jXziPusf2W +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_v1oz0a9y/pash_hiIs1aXEy3 +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_v1oz0a9y/pash_jXziPusf2W: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file14" +mkfifo "#file15" +mkfifo "#file16" +mkfifo "#file17" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file5" "#file14" "#file15" & } +{ tr A-Z a-z <"#file43" >"#file17" & } +{ tr A-Z a-z <"#file15" >"#file18" & } +{ bigram_aux_map "#file17" "#file19" "#file20" "#file21" & } +{ bigram_aux_map "#file18" "#file22" "#file23" "#file24" & } +{ bigram_aux_reduce "#file44" "#file45" "#file46" "#file47" "#file48" "#file49" "#file9" "#file26" "#file27" & } +{ cat "#file26" >/dev/null & } +{ cat "#file27" >/dev/null & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file9" "#file30" "#file31" & } +{ sort <"#file50" >"#file33" & } +{ sort <"#file31" >"#file34" & } +{ sort -m "#file51" "#file52" >"#file11" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file11" "#file36" "#file37" & } +{ uniq <"#file53" >"#file39" & } +{ uniq <"#file37" >"#file40" & } +{ cat "#file54" "#file55" >"#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file14" "#file43" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file19" "#file44" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file20" "#file45" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file21" "#file46" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file22" "#file47" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file23" "#file48" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file24" "#file49" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file50" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file51" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file52" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file53" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file54" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file55" "/tmp/pash_eager_intermediate_#file13" & } +{ uniq <"#file41" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_v1oz0a9y/pash_eTLMdIrlsW +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_v1oz0a9y/pash_Hqavi5mvDc +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 19085.404 ms +(7) Recovering BaSh variables from: /tmp/pash_v1oz0a9y/pash_Hqavi5mvDc +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_v1oz0a9y/pash_eTLMdIrlsW +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_v1oz0a9y/tmpbctyzijh +Preprocessing time: 4.792 ms + +real 0m19.334s +user 0m35.859s +sys 0m7.283s +Files /home/ubuntu/pash/evaluation//small_intermediary//bigrams_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_2_seq.time new file mode 100644 index 000000000..7ab1bb0f0 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/bigrams_2_seq.time @@ -0,0 +1,4 @@ + +real 0m28.386s +user 0m30.224s +sys 0m2.252s diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_16_distr_auto_split.time new file mode 100644 index 000000000..335f4ff53 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_16_distr_auto_split.time @@ -0,0 +1,1122 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_00bo9by7/pash_87Pvb0IsiH +(1) Bash variables saved in: /tmp/pash_00bo9by7/pash_87Pvb0IsiH +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_00bo9by7/tmpuwakl8la ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.167 ms +Optimization time: 0.001 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_00bo9by7/pash_87Pvb0IsiH +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_00bo9by7/tmpnv7zbjpa: +mkfifo s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_00bo9by7/pash_cY6jT5AKhH +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_00bo9by7/pash_fie8oLgoaI +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 20.028 ms +(7) Recovering BaSh variables from: /tmp/pash_00bo9by7/pash_fie8oLgoaI +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_00bo9by7/pash_cY6jT5AKhH +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_00bo9by7/pash_xDrbcCjSH1 +(1) Bash variables saved in: /tmp/pash_00bo9by7/pash_xDrbcCjSH1 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_00bo9by7/tmptkqcnub2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 137.254 ms +Total nodes after optimization: 157 + -- out of which: +Cat nodes: 0 +Eager nodes: 62 +Optimization time: 8.108 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file156, #file157], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file162, #file163], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file140, #file141], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file158, #file159], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file194, #file195], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file196, #file197], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file160, #file161], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file144, #file145], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file142, #file143], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file146, #file147], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file148, #file149], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file150, #file151], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file152, #file153], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file154, #file155], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file192, #file193], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file198, #file199], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file86, #file140], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file87, #file141], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file142], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file93, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:43:s1, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:44:s2, #file201], []) +arguments, redirs found for: diff +|-- ([#file200, #file201], []) +Backend time: 39.512 ms +Optimized script saved in: /tmp/pash_00bo9by7/pash_4PbwkZSyhU +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_00bo9by7/pash_xDrbcCjSH1 +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_00bo9by7/pash_4PbwkZSyhU: +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file38" +mkfifo "#file40" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +{ tr [:lower:] [:upper:] "#file46" & } +{ tr [:lower:] [:upper:] "#file47" & } +{ tr [:lower:] [:upper:] "#file48" & } +{ tr [:lower:] [:upper:] "#file49" & } +{ tr [:lower:] [:upper:] "#file50" & } +{ tr [:lower:] [:upper:] "#file51" & } +{ tr [:lower:] [:upper:] "#file52" & } +{ tr [:lower:] [:upper:] "#file53" & } +{ tr [:lower:] [:upper:] "#file54" & } +{ tr [:lower:] [:upper:] "#file55" & } +{ tr [:lower:] [:upper:] "#file56" & } +{ tr [:lower:] [:upper:] "#file57" & } +{ tr [:lower:] [:upper:] "#file58" & } +{ tr [:lower:] [:upper:] "#file59" & } +{ tr [:lower:] [:upper:] "#file60" & } +{ tr [:lower:] [:upper:] "#file61" & } +{ tr [:upper:] [:lower:] "#file62" & } +{ tr [:upper:] [:lower:] "#file63" & } +{ tr [:upper:] [:lower:] "#file64" & } +{ tr [:upper:] [:lower:] "#file65" & } +{ tr [:upper:] [:lower:] "#file66" & } +{ tr [:upper:] [:lower:] "#file67" & } +{ tr [:upper:] [:lower:] "#file68" & } +{ tr [:upper:] [:lower:] "#file69" & } +{ tr [:upper:] [:lower:] "#file70" & } +{ tr [:upper:] [:lower:] "#file71" & } +{ tr [:upper:] [:lower:] "#file72" & } +{ tr [:upper:] [:lower:] "#file73" & } +{ tr [:upper:] [:lower:] "#file74" & } +{ tr [:upper:] [:lower:] "#file75" & } +{ tr [:upper:] [:lower:] "#file76" & } +{ tr [:upper:] [:lower:] "#file77" & } +{ sort <"#file46" >"#file78" & } +{ sort <"#file47" >"#file79" & } +{ sort <"#file48" >"#file80" & } +{ sort <"#file49" >"#file81" & } +{ sort <"#file50" >"#file82" & } +{ sort <"#file51" >"#file83" & } +{ sort <"#file52" >"#file84" & } +{ sort <"#file53" >"#file85" & } +{ sort <"#file54" >"#file86" & } +{ sort <"#file55" >"#file87" & } +{ sort <"#file56" >"#file88" & } +{ sort <"#file57" >"#file89" & } +{ sort <"#file58" >"#file90" & } +{ sort <"#file59" >"#file91" & } +{ sort <"#file60" >"#file92" & } +{ sort <"#file61" >"#file93" & } +{ sort -m "#file168" "#file169" >"#file94" & } +{ sort -m "#file156" "#file157" >"#file95" & } +{ sort -m "#file162" "#file163" >"#file96" & } +{ sort -m "#file170" "#file171" >"#file97" & } +{ sort -m "#file140" "#file141" >"#file98" & } +{ sort -m "#file158" "#file159" >"#file99" & } +{ sort -m "#file166" "#file167" >"#file100" & } +{ sort -m "#file164" "#file165" >"#file101" & } +{ sort -m "#file182" "#file183" >"#file102" & } +{ sort -m "#file184" "#file185" >"#file103" & } +{ sort -m "#file172" "#file173" >"#file104" & } +{ sort -m "#file186" "#file187" >"#file105" & } +{ sort -m "#file194" "#file195" >"#file106" & } +{ sort -m "#file188" "#file189" >"#file107" & } +{ sort -m "#file196" "#file197" >s1 & } +{ sort <"#file62" >"#file109" & } +{ sort <"#file63" >"#file110" & } +{ sort <"#file64" >"#file111" & } +{ sort <"#file65" >"#file112" & } +{ sort <"#file66" >"#file113" & } +{ sort <"#file67" >"#file114" & } +{ sort <"#file68" >"#file115" & } +{ sort <"#file69" >"#file116" & } +{ sort <"#file70" >"#file117" & } +{ sort <"#file71" >"#file118" & } +{ sort <"#file72" >"#file119" & } +{ sort <"#file73" >"#file120" & } +{ sort <"#file74" >"#file121" & } +{ sort <"#file75" >"#file122" & } +{ sort <"#file76" >"#file123" & } +{ sort <"#file77" >"#file124" & } +{ sort -m "#file160" "#file161" >"#file125" & } +{ sort -m "#file144" "#file145" >"#file126" & } +{ sort -m "#file142" "#file143" >"#file127" & } +{ sort -m "#file146" "#file147" >"#file128" & } +{ sort -m "#file148" "#file149" >"#file129" & } +{ sort -m "#file150" "#file151" >"#file130" & } +{ sort -m "#file152" "#file153" >"#file131" & } +{ sort -m "#file154" "#file155" >"#file132" & } +{ sort -m "#file176" "#file177" >"#file133" & } +{ sort -m "#file174" "#file175" >"#file134" & } +{ sort -m "#file178" "#file179" >"#file135" & } +{ sort -m "#file180" "#file181" >"#file136" & } +{ sort -m "#file190" "#file191" >"#file137" & } +{ sort -m "#file192" "#file193" >"#file138" & } +{ sort -m "#file198" "#file199" >s2 & } +{ /home/ubuntu/pash/runtime/eager.sh "#file86" "#file140" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file87" "#file141" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file142" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file143" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file144" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file145" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file146" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file147" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file148" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file149" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file150" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file151" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file152" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file153" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file154" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file155" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file156" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file157" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file158" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file159" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file160" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file161" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file162" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file163" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file164" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file93" "#file165" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file166" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file167" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file168" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file169" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file170" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file171" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file172" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file173" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file174" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file175" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file176" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file177" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file178" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file179" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file180" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file181" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file182" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file183" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file184" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file185" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file186" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file187" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file188" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file189" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file190" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file191" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file192" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file193" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file194" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file195" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file196" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file197" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file198" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file199" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh s1 "#file200" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh s2 "#file201" "/tmp/pash_eager_intermediate_#file62" & } +{ diff -B "#file200" "#file201" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201"diff: memory exhausted +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_00bo9by7/pash_cMlGRWZEZu +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_00bo9by7/pash_oA00yVRFT3 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 83167.110 ms +(7) Recovering BaSh variables from: /tmp/pash_00bo9by7/pash_oA00yVRFT3 +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_00bo9by7/pash_cMlGRWZEZu +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_00bo9by7/pash_FVa16oAakp +(1) Bash variables saved in: /tmp/pash_00bo9by7/pash_FVa16oAakp +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_00bo9by7/tmphwos6n33 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.175 ms +Optimization time: 0.001 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_00bo9by7/pash_FVa16oAakp +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_00bo9by7/tmp0oludnj2: +rm s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_00bo9by7/pash_ikuFNrEBGk +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_00bo9by7/pash_qBbehlyX27 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 21.632 ms +(7) Recovering BaSh variables from: /tmp/pash_00bo9by7/pash_qBbehlyX27 +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_00bo9by7/pash_ikuFNrEBGk +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_00bo9by7/tmp_tmho2sx +Preprocessing time: 6.327 ms + +real 1m23.934s +user 3m11.796s +sys 0m53.547s +Files /home/ubuntu/pash/evaluation//small_intermediary//diff_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_16_distr_no_eager.time new file mode 100644 index 000000000..689a22eb3 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_16_distr_no_eager.time @@ -0,0 +1,753 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_D1Vi1ONZhN +(1) Bash variables saved in: /tmp/pash_D1Vi1ONZhN +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.227 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_D1Vi1ONZhN +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hdjpqrzz: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_9ihX2rvZ9A +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_wGUtCU1eqN +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 46.405 ms +(7) Recovering BaSh variables from: /tmp/pash_wGUtCU1eqN +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_9ihX2rvZ9A +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_83S9RsOZPO +(1) Bash variables saved in: /tmp/pash_83S9RsOZPO +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 561.391 ms +Total nodes after optimization: 95 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 15.989 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file78, #file79], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file80, #file81], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file82, #file83], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file84, #file85], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file86, #file87], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file88, #file89], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file90, #file91], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file92, #file93], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file94, #file95], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file96, #file97], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file98, #file99], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file100, #file101], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file102, #file103], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file104, #file105], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file106, #file107], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file109, #file110], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file111, #file112], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file113, #file114], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file115, #file116], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file117, #file118], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file119, #file120], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file121, #file122], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file123, #file124], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file125, #file126], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file127, #file128], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file129, #file130], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file131, #file132], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file133, #file134], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file135, #file136], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file137, #file138], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: diff +|-- ([fid:43:s1, fid:44:s2], []) +Backend time: 49.618 ms +Optimized script saved in: /tmp/pash_UtqEHQgJM2 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_83S9RsOZPO +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_UtqEHQgJM2: +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file38" +mkfifo "#file40" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +{ tr [:lower:] [:upper:] "#file46" & } +{ tr [:lower:] [:upper:] "#file47" & } +{ tr [:lower:] [:upper:] "#file48" & } +{ tr [:lower:] [:upper:] "#file49" & } +{ tr [:lower:] [:upper:] "#file50" & } +{ tr [:lower:] [:upper:] "#file51" & } +{ tr [:lower:] [:upper:] "#file52" & } +{ tr [:lower:] [:upper:] "#file53" & } +{ tr [:lower:] [:upper:] "#file54" & } +{ tr [:lower:] [:upper:] "#file55" & } +{ tr [:lower:] [:upper:] "#file56" & } +{ tr [:lower:] [:upper:] "#file57" & } +{ tr [:lower:] [:upper:] "#file58" & } +{ tr [:lower:] [:upper:] "#file59" & } +{ tr [:lower:] [:upper:] "#file60" & } +{ tr [:lower:] [:upper:] "#file61" & } +{ tr [:upper:] [:lower:] "#file62" & } +{ tr [:upper:] [:lower:] "#file63" & } +{ tr [:upper:] [:lower:] "#file64" & } +{ tr [:upper:] [:lower:] "#file65" & } +{ tr [:upper:] [:lower:] "#file66" & } +{ tr [:upper:] [:lower:] "#file67" & } +{ tr [:upper:] [:lower:] "#file68" & } +{ tr [:upper:] [:lower:] "#file69" & } +{ tr [:upper:] [:lower:] "#file70" & } +{ tr [:upper:] [:lower:] "#file71" & } +{ tr [:upper:] [:lower:] "#file72" & } +{ tr [:upper:] [:lower:] "#file73" & } +{ tr [:upper:] [:lower:] "#file74" & } +{ tr [:upper:] [:lower:] "#file75" & } +{ tr [:upper:] [:lower:] "#file76" & } +{ tr [:upper:] [:lower:] "#file77" & } +{ sort <"#file46" >"#file78" & } +{ sort <"#file47" >"#file79" & } +{ sort <"#file48" >"#file80" & } +{ sort <"#file49" >"#file81" & } +{ sort <"#file50" >"#file82" & } +{ sort <"#file51" >"#file83" & } +{ sort <"#file52" >"#file84" & } +{ sort <"#file53" >"#file85" & } +{ sort <"#file54" >"#file86" & } +{ sort <"#file55" >"#file87" & } +{ sort <"#file56" >"#file88" & } +{ sort <"#file57" >"#file89" & } +{ sort <"#file58" >"#file90" & } +{ sort <"#file59" >"#file91" & } +{ sort <"#file60" >"#file92" & } +{ sort <"#file61" >"#file93" & } +{ sort -m "#file78" "#file79" >"#file94" & } +{ sort -m "#file80" "#file81" >"#file95" & } +{ sort -m "#file82" "#file83" >"#file96" & } +{ sort -m "#file84" "#file85" >"#file97" & } +{ sort -m "#file86" "#file87" >"#file98" & } +{ sort -m "#file88" "#file89" >"#file99" & } +{ sort -m "#file90" "#file91" >"#file100" & } +{ sort -m "#file92" "#file93" >"#file101" & } +{ sort -m "#file94" "#file95" >"#file102" & } +{ sort -m "#file96" "#file97" >"#file103" & } +{ sort -m "#file98" "#file99" >"#file104" & } +{ sort -m "#file100" "#file101" >"#file105" & } +{ sort -m "#file102" "#file103" >"#file106" & } +{ sort -m "#file104" "#file105" >"#file107" & } +{ sort -m "#file106" "#file107" >s1 & } +{ sort <"#file62" >"#file109" & } +{ sort <"#file63" >"#file110" & } +{ sort <"#file64" >"#file111" & } +{ sort <"#file65" >"#file112" & } +{ sort <"#file66" >"#file113" & } +{ sort <"#file67" >"#file114" & } +{ sort <"#file68" >"#file115" & } +{ sort <"#file69" >"#file116" & } +{ sort <"#file70" >"#file117" & } +{ sort <"#file71" >"#file118" & } +{ sort <"#file72" >"#file119" & } +{ sort <"#file73" >"#file120" & } +{ sort <"#file74" >"#file121" & } +{ sort <"#file75" >"#file122" & } +{ sort <"#file76" >"#file123" & } +{ sort <"#file77" >"#file124" & } +{ sort -m "#file109" "#file110" >"#file125" & } +{ sort -m "#file111" "#file112" >"#file126" & } +{ sort -m "#file113" "#file114" >"#file127" & } +{ sort -m "#file115" "#file116" >"#file128" & } +{ sort -m "#file117" "#file118" >"#file129" & } +{ sort -m "#file119" "#file120" >"#file130" & } +{ sort -m "#file121" "#file122" >"#file131" & } +{ sort -m "#file123" "#file124" >"#file132" & } +{ sort -m "#file125" "#file126" >"#file133" & } +{ sort -m "#file127" "#file128" >"#file134" & } +{ sort -m "#file129" "#file130" >"#file135" & } +{ sort -m "#file131" "#file132" >"#file136" & } +{ sort -m "#file133" "#file134" >"#file137" & } +{ sort -m "#file135" "#file136" >"#file138" & } +{ sort -m "#file137" "#file138" >s2 & } +{ diff -B s1 s2 & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (1689) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_NkMSYDe727 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_5MxzWUeJZl +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 73850.777 ms +(7) Recovering BaSh variables from: /tmp/pash_5MxzWUeJZl +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_NkMSYDe727 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_Bsjaq9uZkY +(1) Bash variables saved in: /tmp/pash_Bsjaq9uZkY +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.209 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_Bsjaq9uZkY +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_zuyievhe: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_bLUm4YIR7w +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_aJWrNTix3l +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 49.268 ms +(7) Recovering BaSh variables from: /tmp/pash_aJWrNTix3l +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_bLUm4YIR7w +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_vusolszp +Preprocessing time: 40.775 ms + +real 1m15.421s +user 5m56.659s +sys 0m42.361s +Files /home/nikos/dish/evaluation//small_intermediary//diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..fbb4275fc --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_16_distr_no_task_par_eager.time @@ -0,0 +1,1125 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_opjhFRwuJJ +(1) Bash variables saved in: /tmp/pash_opjhFRwuJJ +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.227 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_opjhFRwuJJ +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_lganzlju: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_wp17s9RYkq +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_39AhUnkZwB +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 51.023 ms +(7) Recovering BaSh variables from: /tmp/pash_39AhUnkZwB +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_wp17s9RYkq +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_HlbYN7qPPt +(1) Bash variables saved in: /tmp/pash_HlbYN7qPPt +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 595.561 ms +Total nodes after optimization: 157 + -- out of which: +Cat nodes: 0 +Eager nodes: 62 +Optimization time: 19.192 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file142, #file143], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file144, #file145], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file140, #file141], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file146, #file147], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file148, #file149], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file150, #file151], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file154, #file155], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file156, #file157], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file196, #file197], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file152, #file153], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file158, #file159], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file160, #file161], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file162, #file163], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file192, #file193], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file194, #file195], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file198, #file199], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file82, #file140], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file83, #file141], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file78, #file142], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file79, #file143], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file80, #file144], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file81, #file145], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file84, #file146], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file85, #file147], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file86, #file148], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file87, #file149], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file88, #file150], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file89, #file151], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file109, #file152], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file110, #file153], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file90, #file154], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file91, #file155], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file92, #file156], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file93, #file157], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file111, #file158], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file112, #file159], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file113, #file160], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file114, #file161], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file115, #file162], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file116, #file163], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file117, #file164], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file118, #file165], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file119, #file166], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file120, #file167], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file121, #file168], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file122, #file169], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file123, #file170], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file124, #file171], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file96, #file172], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file97, #file173], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file94, #file174], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file95, #file175], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file98, #file176], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file99, #file177], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file125, #file178], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file126, #file179], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file100, #file180], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file101, #file181], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file127, #file182], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file128, #file183], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file129, #file184], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file130, #file185], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file131, #file186], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file132, #file187], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file102, #file188], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file103, #file189], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file104, #file190], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file105, #file191], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file133, #file192], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file134, #file193], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file135, #file194], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file136, #file195], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file106, #file196], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file107, #file197], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file137, #file198], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file138, #file199], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:43:s1, #file200], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:44:s2, #file201], []) +arguments, redirs found for: diff +|-- ([#file200, #file201], []) +Backend time: 75.591 ms +Optimized script saved in: /tmp/pash_eehCbjz0Ox +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_HlbYN7qPPt +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_eehCbjz0Ox: +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file38" +mkfifo "#file40" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +{ tr [:lower:] [:upper:] "#file46" & } +{ tr [:lower:] [:upper:] "#file47" & } +{ tr [:lower:] [:upper:] "#file48" & } +{ tr [:lower:] [:upper:] "#file49" & } +{ tr [:lower:] [:upper:] "#file50" & } +{ tr [:lower:] [:upper:] "#file51" & } +{ tr [:lower:] [:upper:] "#file52" & } +{ tr [:lower:] [:upper:] "#file53" & } +{ tr [:lower:] [:upper:] "#file54" & } +{ tr [:lower:] [:upper:] "#file55" & } +{ tr [:lower:] [:upper:] "#file56" & } +{ tr [:lower:] [:upper:] "#file57" & } +{ tr [:lower:] [:upper:] "#file58" & } +{ tr [:lower:] [:upper:] "#file59" & } +{ tr [:lower:] [:upper:] "#file60" & } +{ tr [:lower:] [:upper:] "#file61" & } +{ tr [:upper:] [:lower:] "#file62" & } +{ tr [:upper:] [:lower:] "#file63" & } +{ tr [:upper:] [:lower:] "#file64" & } +{ tr [:upper:] [:lower:] "#file65" & } +{ tr [:upper:] [:lower:] "#file66" & } +{ tr [:upper:] [:lower:] "#file67" & } +{ tr [:upper:] [:lower:] "#file68" & } +{ tr [:upper:] [:lower:] "#file69" & } +{ tr [:upper:] [:lower:] "#file70" & } +{ tr [:upper:] [:lower:] "#file71" & } +{ tr [:upper:] [:lower:] "#file72" & } +{ tr [:upper:] [:lower:] "#file73" & } +{ tr [:upper:] [:lower:] "#file74" & } +{ tr [:upper:] [:lower:] "#file75" & } +{ tr [:upper:] [:lower:] "#file76" & } +{ tr [:upper:] [:lower:] "#file77" & } +{ sort <"#file46" >"#file78" & } +{ sort <"#file47" >"#file79" & } +{ sort <"#file48" >"#file80" & } +{ sort <"#file49" >"#file81" & } +{ sort <"#file50" >"#file82" & } +{ sort <"#file51" >"#file83" & } +{ sort <"#file52" >"#file84" & } +{ sort <"#file53" >"#file85" & } +{ sort <"#file54" >"#file86" & } +{ sort <"#file55" >"#file87" & } +{ sort <"#file56" >"#file88" & } +{ sort <"#file57" >"#file89" & } +{ sort <"#file58" >"#file90" & } +{ sort <"#file59" >"#file91" & } +{ sort <"#file60" >"#file92" & } +{ sort <"#file61" >"#file93" & } +{ sort -m "#file142" "#file143" >"#file94" & } +{ sort -m "#file144" "#file145" >"#file95" & } +{ sort -m "#file140" "#file141" >"#file96" & } +{ sort -m "#file146" "#file147" >"#file97" & } +{ sort -m "#file148" "#file149" >"#file98" & } +{ sort -m "#file150" "#file151" >"#file99" & } +{ sort -m "#file154" "#file155" >"#file100" & } +{ sort -m "#file156" "#file157" >"#file101" & } +{ sort -m "#file174" "#file175" >"#file102" & } +{ sort -m "#file172" "#file173" >"#file103" & } +{ sort -m "#file176" "#file177" >"#file104" & } +{ sort -m "#file180" "#file181" >"#file105" & } +{ sort -m "#file188" "#file189" >"#file106" & } +{ sort -m "#file190" "#file191" >"#file107" & } +{ sort -m "#file196" "#file197" >s1 & } +{ sort <"#file62" >"#file109" & } +{ sort <"#file63" >"#file110" & } +{ sort <"#file64" >"#file111" & } +{ sort <"#file65" >"#file112" & } +{ sort <"#file66" >"#file113" & } +{ sort <"#file67" >"#file114" & } +{ sort <"#file68" >"#file115" & } +{ sort <"#file69" >"#file116" & } +{ sort <"#file70" >"#file117" & } +{ sort <"#file71" >"#file118" & } +{ sort <"#file72" >"#file119" & } +{ sort <"#file73" >"#file120" & } +{ sort <"#file74" >"#file121" & } +{ sort <"#file75" >"#file122" & } +{ sort <"#file76" >"#file123" & } +{ sort <"#file77" >"#file124" & } +{ sort -m "#file152" "#file153" >"#file125" & } +{ sort -m "#file158" "#file159" >"#file126" & } +{ sort -m "#file160" "#file161" >"#file127" & } +{ sort -m "#file162" "#file163" >"#file128" & } +{ sort -m "#file164" "#file165" >"#file129" & } +{ sort -m "#file166" "#file167" >"#file130" & } +{ sort -m "#file168" "#file169" >"#file131" & } +{ sort -m "#file170" "#file171" >"#file132" & } +{ sort -m "#file178" "#file179" >"#file133" & } +{ sort -m "#file182" "#file183" >"#file134" & } +{ sort -m "#file184" "#file185" >"#file135" & } +{ sort -m "#file186" "#file187" >"#file136" & } +{ sort -m "#file192" "#file193" >"#file137" & } +{ sort -m "#file194" "#file195" >"#file138" & } +{ sort -m "#file198" "#file199" >s2 & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file82" "#file140" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file83" "#file141" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file78" "#file142" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file79" "#file143" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file80" "#file144" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file81" "#file145" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file84" "#file146" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file85" "#file147" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file86" "#file148" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file87" "#file149" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file88" "#file150" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file89" "#file151" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file109" "#file152" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file110" "#file153" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file90" "#file154" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file91" "#file155" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file92" "#file156" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file93" "#file157" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file111" "#file158" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file112" "#file159" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file113" "#file160" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file114" "#file161" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file115" "#file162" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file116" "#file163" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file117" "#file164" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file118" "#file165" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file119" "#file166" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file120" "#file167" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file121" "#file168" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file122" "#file169" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file123" "#file170" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file124" "#file171" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file96" "#file172" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file97" "#file173" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file94" "#file174" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file95" "#file175" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file98" "#file176" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file99" "#file177" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file125" "#file178" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file126" "#file179" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file100" "#file180" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file101" "#file181" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file127" "#file182" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file128" "#file183" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file129" "#file184" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file130" "#file185" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file131" "#file186" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file132" "#file187" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file102" "#file188" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file103" "#file189" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file104" "#file190" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file105" "#file191" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file133" "#file192" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file134" "#file193" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file135" "#file194" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file136" "#file195" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file106" "#file196" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file107" "#file197" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file137" "#file198" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file138" "#file199" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s1 "#file200" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s2 "#file201" "/tmp/pash_eager_intermediate_#file62" & } +{ diff -B "#file200" "#file201" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (3296) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_IlHgioD5Nf +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_AERTycTu9G +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 157665.572 ms +(7) Recovering BaSh variables from: /tmp/pash_AERTycTu9G +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_IlHgioD5Nf +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_AQcEXkfPL2 +(1) Bash variables saved in: /tmp/pash_AQcEXkfPL2 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.214 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_AQcEXkfPL2 +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_ivdrhgjg: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_AeN8yEcTfP +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_95TAmbQu4q +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 51.496 ms +(7) Recovering BaSh variables from: /tmp/pash_95TAmbQu4q +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_AeN8yEcTfP +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_eajcdwjk +Preprocessing time: 43.188 ms + +real 2m39.324s +user 5m18.295s +sys 2m9.949s +Files /home/nikos/dish/evaluation//small_intermediary//diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_distr_auto_split.time new file mode 100644 index 000000000..657a2778d --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_distr_auto_split.time @@ -0,0 +1,254 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ek80uq50/pash_BPKCdKV3eI +(1) Bash variables saved in: /tmp/pash_ek80uq50/pash_BPKCdKV3eI +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_ek80uq50/tmpl8w50o9t ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.173 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_ek80uq50/pash_BPKCdKV3eI +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_ek80uq50/tmp6j7etjpb: +mkfifo s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_ek80uq50/pash_Ndtlmj0R8e +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_ek80uq50/pash_lq11N9HmJn +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 19.846 ms +(7) Recovering BaSh variables from: /tmp/pash_ek80uq50/pash_lq11N9HmJn +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_ek80uq50/pash_Ndtlmj0R8e +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ek80uq50/pash_N8SeZHTrGl +(1) Bash variables saved in: /tmp/pash_ek80uq50/pash_N8SeZHTrGl +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_ek80uq50/tmpljfjgnik ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 19.351 ms +Total nodes after optimization: 17 + -- out of which: +Cat nodes: 0 +Eager nodes: 6 +Optimization time: 1.323 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file28, #file29], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file30, #file31], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file22, #file28], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file23, #file29], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file25, #file30], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file26, #file31], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:15:s1, #file32], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:16:s2, #file33], []) +arguments, redirs found for: diff +|-- ([#file32, #file33], []) +Backend time: 3.775 ms +Optimized script saved in: /tmp/pash_ek80uq50/pash_yx7j9s6Oej +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_ek80uq50/pash_N8SeZHTrGl +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_ek80uq50/pash_yx7j9s6Oej: +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file10" +mkfifo "#file12" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +{ tr [:lower:] [:upper:] "#file18" & } +{ tr [:lower:] [:upper:] "#file19" & } +{ tr [:upper:] [:lower:] "#file20" & } +{ tr [:upper:] [:lower:] "#file21" & } +{ sort <"#file18" >"#file22" & } +{ sort <"#file19" >"#file23" & } +{ sort -m "#file28" "#file29" >s1 & } +{ sort <"#file20" >"#file25" & } +{ sort <"#file21" >"#file26" & } +{ sort -m "#file30" "#file31" >s2 & } +{ /home/ubuntu/pash/runtime/eager.sh "#file22" "#file28" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file23" "#file29" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file25" "#file30" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file26" "#file31" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh s1 "#file32" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh s2 "#file33" "/tmp/pash_eager_intermediate_#file6" & } +{ diff -B "#file32" "#file33" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33"diff: memory exhausted +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_ek80uq50/pash_Ijrym4kjB4 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_ek80uq50/pash_ayq6I4BlGp +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 53280.668 ms +(7) Recovering BaSh variables from: /tmp/pash_ek80uq50/pash_ayq6I4BlGp +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_ek80uq50/pash_Ijrym4kjB4 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ek80uq50/pash_Z51NxT6lzf +(1) Bash variables saved in: /tmp/pash_ek80uq50/pash_Z51NxT6lzf +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_ek80uq50/tmpjqk7nt0y ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.16 ms +Optimization time: 0.001 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_ek80uq50/pash_Z51NxT6lzf +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_ek80uq50/tmplq3wcpc7: +rm s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_ek80uq50/pash_h7gKY1N9dl +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_ek80uq50/pash_WBk6wbJxI6 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 19.629 ms +(7) Recovering BaSh variables from: /tmp/pash_ek80uq50/pash_WBk6wbJxI6 +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_ek80uq50/pash_h7gKY1N9dl +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_ek80uq50/tmph8cfki8s +Preprocessing time: 5.957 ms + +real 0m53.879s +user 1m52.585s +sys 0m25.886s +Files /home/ubuntu/pash/evaluation//small_intermediary//diff_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_distr_no_eager.time new file mode 100644 index 000000000..11c2fc655 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_distr_no_eager.time @@ -0,0 +1,221 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_0ezXIWCHem +(1) Bash variables saved in: /tmp/pash_0ezXIWCHem +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.229 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_0ezXIWCHem +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_fbyampfi: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_erasuvoTo6 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_IrFYPe8Bla +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.570 ms +(7) Recovering BaSh variables from: /tmp/pash_IrFYPe8Bla +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_erasuvoTo6 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_XzWSURKHtP +(1) Bash variables saved in: /tmp/pash_XzWSURKHtP +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 73.21 ms +Total nodes after optimization: 11 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 3.467 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file22, #file23], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file25, #file26], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: diff +|-- ([fid:15:s1, fid:16:s2], []) +Backend time: 12.954 ms +Optimized script saved in: /tmp/pash_KrwQMBKn8W +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_XzWSURKHtP +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_KrwQMBKn8W: +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file10" +mkfifo "#file12" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +{ tr [:lower:] [:upper:] "#file18" & } +{ tr [:lower:] [:upper:] "#file19" & } +{ tr [:upper:] [:lower:] "#file20" & } +{ tr [:upper:] [:lower:] "#file21" & } +{ sort <"#file18" >"#file22" & } +{ sort <"#file19" >"#file23" & } +{ sort -m "#file22" "#file23" >s1 & } +{ sort <"#file20" >"#file25" & } +{ sort <"#file21" >"#file26" & } +{ sort -m "#file25" "#file26" >s2 & } +{ diff -B s1 s2 & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (130312) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_CF8dts95CS +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pvi4sJTCnK +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 99515.138 ms +(7) Recovering BaSh variables from: /tmp/pash_pvi4sJTCnK +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_CF8dts95CS +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_kvyZt0xqRs +(1) Bash variables saved in: /tmp/pash_kvyZt0xqRs +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.215 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_kvyZt0xqRs +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_lqwbbpnb: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_LYo3qwfxCj +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_ppWfQGeM9G +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.331 ms +(7) Recovering BaSh variables from: /tmp/pash_ppWfQGeM9G +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_LYo3qwfxCj +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_loaskqot +Preprocessing time: 44.912 ms + +real 1m40.546s +user 4m24.005s +sys 0m28.370s +Files /home/nikos/dish/evaluation//small_intermediary//diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..4ea3bdc78 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_distr_no_task_par_eager.time @@ -0,0 +1,257 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_KHwYjLS0y3 +(1) Bash variables saved in: /tmp/pash_KHwYjLS0y3 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.225 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_KHwYjLS0y3 +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_rrkhudll: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_0jMgnX7Dmc +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_lADol9rtqV +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.156 ms +(7) Recovering BaSh variables from: /tmp/pash_lADol9rtqV +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_0jMgnX7Dmc +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_NMcGg3DMkI +(1) Bash variables saved in: /tmp/pash_NMcGg3DMkI +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 72.778 ms +Total nodes after optimization: 17 + -- out of which: +Cat nodes: 0 +Eager nodes: 6 +Optimization time: 4.171 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file28, #file29], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file30, #file31], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file22, #file28], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file23, #file29], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file25, #file30], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file26, #file31], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:15:s1, #file32], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:16:s2, #file33], []) +arguments, redirs found for: diff +|-- ([#file32, #file33], []) +Backend time: 17.284 ms +Optimized script saved in: /tmp/pash_drZZBRIOFy +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_NMcGg3DMkI +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_drZZBRIOFy: +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file10" +mkfifo "#file12" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +{ tr [:lower:] [:upper:] "#file18" & } +{ tr [:lower:] [:upper:] "#file19" & } +{ tr [:upper:] [:lower:] "#file20" & } +{ tr [:upper:] [:lower:] "#file21" & } +{ sort <"#file18" >"#file22" & } +{ sort <"#file19" >"#file23" & } +{ sort -m "#file28" "#file29" >s1 & } +{ sort <"#file20" >"#file25" & } +{ sort <"#file21" >"#file26" & } +{ sort -m "#file30" "#file31" >s2 & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file22" "#file28" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file23" "#file29" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file25" "#file30" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file26" "#file31" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s1 "#file32" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s2 "#file33" "/tmp/pash_eager_intermediate_#file6" & } +{ diff -B "#file32" "#file33" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (130788) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_9UE0sntEHC +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_acGjB7ejfz +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 133539.717 ms +(7) Recovering BaSh variables from: /tmp/pash_acGjB7ejfz +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_9UE0sntEHC +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_F8bEt7xfCf +(1) Bash variables saved in: /tmp/pash_F8bEt7xfCf +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.218 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_F8bEt7xfCf +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_tncaqhfh: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_LrbExYA84I +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_0fpAXzRG7T +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.606 ms +(7) Recovering BaSh variables from: /tmp/pash_0fpAXzRG7T +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_LrbExYA84I +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_vxlievgw +Preprocessing time: 41.666 ms + +real 2m14.581s +user 4m20.795s +sys 0m44.685s +Files /home/nikos/dish/evaluation//small_intermediary//diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_seq.time new file mode 100644 index 000000000..bbf0ffed0 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/diff_2_seq.time @@ -0,0 +1,5 @@ +diff: memory exhausted + +real 0m53.998s +user 1m37.340s +sys 0m11.542s diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr.time new file mode 100644 index 000000000..32e4238ef --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr.time @@ -0,0 +1,549 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_DyzAfWxevY +(1) Bash variables saved in: /tmp/pash_DyzAfWxevY +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 275.954 ms +Total nodes after optimization: 78 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 9.156 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file71, #file72], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file73, #file74], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file75, #file76], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file77, #file78], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file79, #file80], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file81, #file82], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file83, #file84], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file85, #file86], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file87, #file88], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file89, #file90], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file91, #file92], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file93, #file94], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file95, #file96], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file97, #file98], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file99, #file100], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file40, #file71], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file41, #file72], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file42, #file73], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file43, #file74], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file44, #file75], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file45, #file76], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file46, #file77], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file47, #file78], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file48, #file79], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file49, #file80], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file50, #file81], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file51, #file82], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file52, #file83], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file53, #file84], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file54, #file85], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file55, #file86], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file56, #file87], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file57, #file88], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file58, #file89], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file59, #file90], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file60, #file91], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file61, #file92], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file62, #file93], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file63, #file94], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file64, #file95], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file65, #file96], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file66, #file97], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file67, #file98], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file68, #file99], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file69, #file100], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Backend time: 42.069 ms +Optimized script saved in: /tmp/pash_jFFysOC9XR +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_DyzAfWxevY +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_jFFysOC9XR: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ tr A-Z a-z "#file38" & } +{ tr A-Z a-z "#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort <"#file38" >"#file54" & } +{ sort <"#file39" >"#file55" & } +{ sort -m "#file71" "#file72" >"#file56" & } +{ sort -m "#file73" "#file74" >"#file57" & } +{ sort -m "#file75" "#file76" >"#file58" & } +{ sort -m "#file77" "#file78" >"#file59" & } +{ sort -m "#file79" "#file80" >"#file60" & } +{ sort -m "#file81" "#file82" >"#file61" & } +{ sort -m "#file83" "#file84" >"#file62" & } +{ sort -m "#file85" "#file86" >"#file63" & } +{ sort -m "#file87" "#file88" >"#file64" & } +{ sort -m "#file89" "#file90" >"#file65" & } +{ sort -m "#file91" "#file92" >"#file66" & } +{ sort -m "#file93" "#file94" >"#file67" & } +{ sort -m "#file95" "#file96" >"#file68" & } +{ sort -m "#file97" "#file98" >"#file69" & } +{ sort -m "#file99" "#file100" >"#file21" & } +{ /home/nikos/dish/runtime/eager.sh "#file40" "#file71" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager.sh "#file41" "#file72" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager.sh "#file42" "#file73" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager.sh "#file43" "#file74" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager.sh "#file44" "#file75" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager.sh "#file45" "#file76" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager.sh "#file46" "#file77" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager.sh "#file47" "#file78" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager.sh "#file48" "#file79" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager.sh "#file49" "#file80" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager.sh "#file50" "#file81" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager.sh "#file51" "#file82" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager.sh "#file52" "#file83" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager.sh "#file53" "#file84" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager.sh "#file54" "#file85" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager.sh "#file55" "#file86" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager.sh "#file56" "#file87" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager.sh "#file57" "#file88" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager.sh "#file58" "#file89" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager.sh "#file59" "#file90" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager.sh "#file60" "#file91" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager.sh "#file61" "#file92" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager.sh "#file62" "#file93" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager.sh "#file63" "#file94" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager.sh "#file64" "#file95" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager.sh "#file65" "#file96" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager.sh "#file66" "#file97" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager.sh "#file67" "#file98" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager.sh "#file68" "#file99" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager.sh "#file69" "#file100" "/tmp/pash_eager_intermediate_#file30" & } +{ sort -r <"#file21" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (17313) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_3suArCyyn3 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_BNItrHRQfU +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 80202.451 ms +(7) Recovering BaSh variables from: /tmp/pash_BNItrHRQfU +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_3suArCyyn3 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_oannpdfb +Preprocessing time: 27.143 ms + +real 1m20.939s +user 3m31.298s +sys 1m55.295s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr_auto_split.time new file mode 100644 index 000000000..43af2d43a --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr_auto_split.time @@ -0,0 +1,1054 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_90k2uzl2/pash_wTIA99Zlm7 +(1) Bash variables saved in: /tmp/pash_90k2uzl2/pash_wTIA99Zlm7 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_90k2uzl2/tmp9x86lfuk ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 65.637 ms +Total nodes after optimization: 154 + -- out of which: +Cat nodes: 0 +Eager nodes: 75 +Optimization time: 5.958 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file131, #file132], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file125, #file126], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file121, #file122], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file119, #file120], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file133, #file134], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file127, #file128], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file129, #file130], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file123, #file124], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file139, #file140], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file135, #file136], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file141, #file142], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file137, #file138], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file143, #file144], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file145, #file146], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file147, #file148], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file21, #file71, #file72, #file73, #file74, #file75, #file76, #file77, #file78, #file79, #file80, #file81, #file82, #file83, #file84, #file85, #file86], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file46, #file119], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file47, #file120], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file121], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file45, #file122], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file54, #file123], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file55, #file124], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file125], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file126], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file50, #file127], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file51, #file128], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file52, #file129], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file53, #file130], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file131], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file132], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file48, #file133], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file49, #file134], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file58, #file135], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file59, #file136], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file62, #file137], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file138], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file56, #file139], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file57, #file140], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file60, #file141], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file61, #file142], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file68, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file69, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file71, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file72, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file73, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file74, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file75, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file76, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file77, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file93, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file193], []) +arguments, redirs found for: sort +|-- ([#file192, #file193], []) +Backend time: 29.869 ms +Optimized script saved in: /tmp/pash_90k2uzl2/pash_DSFr1RaGTN +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_90k2uzl2/pash_wTIA99Zlm7 +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_90k2uzl2/pash_DSFr1RaGTN: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ tr A-Z a-z "#file38" & } +{ tr A-Z a-z "#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort <"#file38" >"#file54" & } +{ sort <"#file39" >"#file55" & } +{ sort -m "#file131" "#file132" >"#file56" & } +{ sort -m "#file125" "#file126" >"#file57" & } +{ sort -m "#file121" "#file122" >"#file58" & } +{ sort -m "#file119" "#file120" >"#file59" & } +{ sort -m "#file133" "#file134" >"#file60" & } +{ sort -m "#file127" "#file128" >"#file61" & } +{ sort -m "#file129" "#file130" >"#file62" & } +{ sort -m "#file123" "#file124" >"#file63" & } +{ sort -m "#file139" "#file140" >"#file64" & } +{ sort -m "#file135" "#file136" >"#file65" & } +{ sort -m "#file141" "#file142" >"#file66" & } +{ sort -m "#file137" "#file138" >"#file67" & } +{ sort -m "#file143" "#file144" >"#file68" & } +{ sort -m "#file145" "#file146" >"#file69" & } +{ sort -m "#file147" "#file148" >"#file21" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file21" "#file71" "#file72" "#file73" "#file74" "#file75" "#file76" "#file77" "#file78" "#file79" "#file80" "#file81" "#file82" "#file83" "#file84" "#file85" "#file86" & } +{ sort -r <"#file149" >"#file88" & } +{ sort -r <"#file150" >"#file89" & } +{ sort -r <"#file151" >"#file90" & } +{ sort -r <"#file152" >"#file91" & } +{ sort -r <"#file153" >"#file92" & } +{ sort -r <"#file154" >"#file93" & } +{ sort -r <"#file155" >"#file94" & } +{ sort -r <"#file156" >"#file95" & } +{ sort -r <"#file157" >"#file96" & } +{ sort -r <"#file158" >"#file97" & } +{ sort -r <"#file159" >"#file98" & } +{ sort -r <"#file160" >"#file99" & } +{ sort -r <"#file161" >"#file100" & } +{ sort -r <"#file162" >"#file101" & } +{ sort -r <"#file163" >"#file102" & } +{ sort -r <"#file86" >"#file103" & } +{ sort -r -m "#file164" "#file165" >"#file104" & } +{ sort -r -m "#file166" "#file167" >"#file105" & } +{ sort -r -m "#file168" "#file169" >"#file106" & } +{ sort -r -m "#file170" "#file171" >"#file107" & } +{ sort -r -m "#file172" "#file173" >"#file108" & } +{ sort -r -m "#file174" "#file175" >"#file109" & } +{ sort -r -m "#file176" "#file177" >"#file110" & } +{ sort -r -m "#file178" "#file179" >"#file111" & } +{ sort -r -m "#file180" "#file181" >"#file112" & } +{ sort -r -m "#file182" "#file183" >"#file113" & } +{ sort -r -m "#file184" "#file185" >"#file114" & } +{ sort -r -m "#file186" "#file187" >"#file115" & } +{ sort -r -m "#file188" "#file189" >"#file116" & } +{ sort -r -m "#file190" "#file191" >"#file117" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file46" "#file119" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file47" "#file120" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file121" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file45" "#file122" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file54" "#file123" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file55" "#file124" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file125" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file126" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file50" "#file127" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file51" "#file128" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file52" "#file129" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file53" "#file130" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file131" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file132" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file48" "#file133" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file49" "#file134" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file58" "#file135" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file59" "#file136" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file62" "#file137" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file138" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file56" "#file139" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file57" "#file140" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file60" "#file141" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file61" "#file142" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file143" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file144" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file145" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file146" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file68" "#file147" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file69" "#file148" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file71" "#file149" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file72" "#file150" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file73" "#file151" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file74" "#file152" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file75" "#file153" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file76" "#file154" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file77" "#file155" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file156" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file157" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file158" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file159" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file160" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file161" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file162" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file163" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file164" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file165" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file166" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file167" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file168" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file93" "#file169" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file170" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file171" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file172" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file173" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file174" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file175" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file176" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file177" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file178" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file179" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file180" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file181" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file182" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file183" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file184" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file185" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file186" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file187" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file188" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file189" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file190" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file191" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file192" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file193" "/tmp/pash_eager_intermediate_#file75" & } +{ sort -r -m "#file192" "#file193" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_90k2uzl2/pash_DWqT2W1tkm +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_90k2uzl2/pash_XDbhJwky7u +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 31668.714 ms +(7) Recovering BaSh variables from: /tmp/pash_90k2uzl2/pash_XDbhJwky7u +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_90k2uzl2/pash_DWqT2W1tkm +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_90k2uzl2/tmp2eppfafc +Preprocessing time: 5.096 ms + +real 0m32.008s +user 2m17.222s +sys 0m50.019s +Files /home/ubuntu/pash/evaluation//small_intermediary//double_sort_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr_no_eager.time new file mode 100644 index 000000000..98bb9f4a3 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr_no_eager.time @@ -0,0 +1,369 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_fT6Zn08kV2 +(1) Bash variables saved in: /tmp/pash_fT6Zn08kV2 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 267.846 ms +Total nodes after optimization: 48 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 6.507 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file40, #file41], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file42, #file43], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file44, #file45], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file46, #file47], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file48, #file49], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file50, #file51], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file52, #file53], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file54, #file55], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file56, #file57], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file58, #file59], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file60, #file61], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file62, #file63], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file64, #file65], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file66, #file67], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file68, #file69], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Backend time: 29.079 ms +Optimized script saved in: /tmp/pash_u33UA8WozG +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_fT6Zn08kV2 +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_u33UA8WozG: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ tr A-Z a-z "#file38" & } +{ tr A-Z a-z "#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort <"#file38" >"#file54" & } +{ sort <"#file39" >"#file55" & } +{ sort -m "#file40" "#file41" >"#file56" & } +{ sort -m "#file42" "#file43" >"#file57" & } +{ sort -m "#file44" "#file45" >"#file58" & } +{ sort -m "#file46" "#file47" >"#file59" & } +{ sort -m "#file48" "#file49" >"#file60" & } +{ sort -m "#file50" "#file51" >"#file61" & } +{ sort -m "#file52" "#file53" >"#file62" & } +{ sort -m "#file54" "#file55" >"#file63" & } +{ sort -m "#file56" "#file57" >"#file64" & } +{ sort -m "#file58" "#file59" >"#file65" & } +{ sort -m "#file60" "#file61" >"#file66" & } +{ sort -m "#file62" "#file63" >"#file67" & } +{ sort -m "#file64" "#file65" >"#file68" & } +{ sort -m "#file66" "#file67" >"#file69" & } +{ sort -m "#file68" "#file69" >"#file21" & } +{ sort -r <"#file21" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (16022) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_fyK3l7y3z1 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_AkQphRMLmV +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 91861.998 ms +(7) Recovering BaSh variables from: /tmp/pash_AkQphRMLmV +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_fyK3l7y3z1 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_arfoacxy +Preprocessing time: 26.825 ms + +real 1m32.571s +user 3m46.850s +sys 0m22.397s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..f019aaf18 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_16_distr_no_task_par_eager.time @@ -0,0 +1,549 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_AnD4xD63ro +(1) Bash variables saved in: /tmp/pash_AnD4xD63ro +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 265.028 ms +Total nodes after optimization: 78 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 9.198 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file77, #file78], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file79, #file80], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file81, #file82], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file83, #file84], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file85, #file86], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file71, #file72], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file75, #file76], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file73, #file74], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file91, #file92], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file93, #file94], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file87, #file88], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file89, #file90], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file97, #file98], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file95, #file96], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file99, #file100], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file50, #file71], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file51, #file72], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file54, #file73], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file55, #file74], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file52, #file75], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file53, #file76], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file40, #file77], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file41, #file78], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file42, #file79], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file43, #file80], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file44, #file81], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file45, #file82], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file46, #file83], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file47, #file84], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file48, #file85], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file49, #file86], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file60, #file87], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file61, #file88], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file62, #file89], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file63, #file90], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file56, #file91], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file57, #file92], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file58, #file93], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file59, #file94], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file66, #file95], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file67, #file96], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file64, #file97], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file65, #file98], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file68, #file99], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file69, #file100], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Backend time: 42.087 ms +Optimized script saved in: /tmp/pash_IlXBb9gHCp +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_AnD4xD63ro +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_IlXBb9gHCp: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ tr A-Z a-z "#file38" & } +{ tr A-Z a-z "#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort <"#file38" >"#file54" & } +{ sort <"#file39" >"#file55" & } +{ sort -m "#file77" "#file78" >"#file56" & } +{ sort -m "#file79" "#file80" >"#file57" & } +{ sort -m "#file81" "#file82" >"#file58" & } +{ sort -m "#file83" "#file84" >"#file59" & } +{ sort -m "#file85" "#file86" >"#file60" & } +{ sort -m "#file71" "#file72" >"#file61" & } +{ sort -m "#file75" "#file76" >"#file62" & } +{ sort -m "#file73" "#file74" >"#file63" & } +{ sort -m "#file91" "#file92" >"#file64" & } +{ sort -m "#file93" "#file94" >"#file65" & } +{ sort -m "#file87" "#file88" >"#file66" & } +{ sort -m "#file89" "#file90" >"#file67" & } +{ sort -m "#file97" "#file98" >"#file68" & } +{ sort -m "#file95" "#file96" >"#file69" & } +{ sort -m "#file99" "#file100" >"#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file50" "#file71" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file51" "#file72" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file54" "#file73" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file55" "#file74" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file52" "#file75" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file53" "#file76" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file40" "#file77" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file41" "#file78" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file42" "#file79" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file43" "#file80" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file44" "#file81" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file45" "#file82" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file46" "#file83" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file47" "#file84" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file48" "#file85" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file49" "#file86" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file60" "#file87" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file61" "#file88" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file62" "#file89" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file63" "#file90" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file56" "#file91" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file57" "#file92" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file58" "#file93" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file59" "#file94" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file66" "#file95" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file67" "#file96" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file64" "#file97" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file65" "#file98" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file68" "#file99" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file69" "#file100" "/tmp/pash_eager_intermediate_#file30" & } +{ sort -r <"#file21" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (16704) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_0EG0RAtsaJ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_AyvhQE1Ltn +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 128474.651 ms +(7) Recovering BaSh variables from: /tmp/pash_AyvhQE1Ltn +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_0EG0RAtsaJ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_upajoaxh +Preprocessing time: 26.251 ms + +real 2m9.196s +user 3m25.588s +sys 0m46.409s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr.time new file mode 100644 index 000000000..daa2650f1 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr.time @@ -0,0 +1,115 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_P4MTLUNAk4 +(1) Bash variables saved in: /tmp/pash_P4MTLUNAk4 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 35.762 ms +Total nodes after optimization: 8 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 1.83 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file15, #file16], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file12, #file15], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file13, #file16], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +Backend time: 10.983 ms +Optimized script saved in: /tmp/pash_uidosZ6rTk +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_P4MTLUNAk4 +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_uidosZ6rTk: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +mkfifo "#file15" +mkfifo "#file16" +{ tr A-Z a-z "#file10" & } +{ tr A-Z a-z "#file11" & } +{ sort <"#file10" >"#file12" & } +{ sort <"#file11" >"#file13" & } +{ sort -m "#file15" "#file16" >"#file7" & } +{ /home/nikos/dish/runtime/eager.sh "#file12" "#file15" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager.sh "#file13" "#file16" "/tmp/pash_eager_intermediate_#file2" & } +{ sort -r <"#file7" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (15195) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_88GIrbU7O3 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_s5LisVmscf +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 129088.146 ms +(7) Recovering BaSh variables from: /tmp/pash_s5LisVmscf +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_88GIrbU7O3 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_mdnrhwcy +Preprocessing time: 27.385 ms + +real 2m9.530s +user 3m1.598s +sys 0m21.883s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr_auto_split.time new file mode 100644 index 000000000..24c471720 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr_auto_split.time @@ -0,0 +1,158 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_71xu6xbh/pash_VKOwk2CbVp +(1) Bash variables saved in: /tmp/pash_71xu6xbh/pash_VKOwk2CbVp +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_71xu6xbh/tmp4dljdyx3 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 8.947 ms +Total nodes after optimization: 14 + -- out of which: +Cat nodes: 0 +Eager nodes: 5 +Optimization time: 1.897 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file21, #file22], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file7, #file15, #file16], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file12, #file21], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file13, #file22], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file15, #file23], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file18, #file24], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file19, #file25], []) +arguments, redirs found for: sort +|-- ([#file24, #file25], []) +Backend time: 3.317 ms +Optimized script saved in: /tmp/pash_71xu6xbh/pash_cceBNeHIKy +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_71xu6xbh/pash_VKOwk2CbVp +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_71xu6xbh/pash_cceBNeHIKy: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +mkfifo "#file15" +mkfifo "#file16" +mkfifo "#file17" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +{ tr A-Z a-z "#file10" & } +{ tr A-Z a-z "#file11" & } +{ sort <"#file10" >"#file12" & } +{ sort <"#file11" >"#file13" & } +{ sort -m "#file21" "#file22" >"#file7" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file7" "#file15" "#file16" & } +{ sort -r <"#file23" >"#file18" & } +{ sort -r <"#file16" >"#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file12" "#file21" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file13" "#file22" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file15" "#file23" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file18" "#file24" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file19" "#file25" "/tmp/pash_eager_intermediate_#file5" & } +{ sort -r -m "#file24" "#file25" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_71xu6xbh/pash_VS3sqbvP76 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_71xu6xbh/pash_K5gJuPSzCb +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 50556.865 ms +(7) Recovering BaSh variables from: /tmp/pash_71xu6xbh/pash_K5gJuPSzCb +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_71xu6xbh/pash_VS3sqbvP76 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_71xu6xbh/tmpvz4fdpss +Preprocessing time: 4.717 ms + +real 0m50.803s +user 1m19.571s +sys 0m18.807s +Files /home/ubuntu/pash/evaluation//small_intermediary//double_sort_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr_no_eager.time new file mode 100644 index 000000000..f87fb8404 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr_no_eager.time @@ -0,0 +1,103 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_T5s5fHpkpg +(1) Bash variables saved in: /tmp/pash_T5s5fHpkpg +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 33.543 ms +Total nodes after optimization: 6 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 1.673 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file12, #file13], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +Backend time: 8.888 ms +Optimized script saved in: /tmp/pash_B6Xm21kkF2 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_T5s5fHpkpg +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_B6Xm21kkF2: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +{ tr A-Z a-z "#file10" & } +{ tr A-Z a-z "#file11" & } +{ sort <"#file10" >"#file12" & } +{ sort <"#file11" >"#file13" & } +{ sort -m "#file12" "#file13" >"#file7" & } +{ sort -r <"#file7" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (14742) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_fhArDNcAZH +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_QDzXDK09G4 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 131257.123 ms +(7) Recovering BaSh variables from: /tmp/pash_QDzXDK09G4 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_fhArDNcAZH +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_udaqemvp +Preprocessing time: 26.724 ms + +real 2m11.705s +user 3m3.014s +sys 0m15.803s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..ef19127a8 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_distr_no_task_par_eager.time @@ -0,0 +1,115 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ACgqTMSyhf +(1) Bash variables saved in: /tmp/pash_ACgqTMSyhf +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 35.87 ms +Total nodes after optimization: 8 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 1.848 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file15, #file16], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file12, #file15], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file13, #file16], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +Backend time: 11.361 ms +Optimized script saved in: /tmp/pash_n3pGgKwZVB +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_ACgqTMSyhf +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_n3pGgKwZVB: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +mkfifo "#file15" +mkfifo "#file16" +{ tr A-Z a-z "#file10" & } +{ tr A-Z a-z "#file11" & } +{ sort <"#file10" >"#file12" & } +{ sort <"#file11" >"#file13" & } +{ sort -m "#file15" "#file16" >"#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file12" "#file15" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file13" "#file16" "/tmp/pash_eager_intermediate_#file2" & } +{ sort -r <"#file7" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (14962) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_a8WKFjtinQ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_iMCvUKbS9d +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 141200.116 ms +(7) Recovering BaSh variables from: /tmp/pash_iMCvUKbS9d +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_a8WKFjtinQ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_hrmfoplh +Preprocessing time: 26.512 ms + +real 2m21.645s +user 3m0.646s +sys 0m21.506s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_seq.time new file mode 100644 index 000000000..de3439033 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/double_sort_2_seq.time @@ -0,0 +1,4 @@ + +real 1m21.770s +user 1m10.312s +sys 0m7.878s diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_16_distr_auto_split.time new file mode 100644 index 000000000..6b296e5d3 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_16_distr_auto_split.time @@ -0,0 +1,367 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_2gjsk_mp/pash_jBrF4NwwlH +(1) Bash variables saved in: /tmp/pash_2gjsk_mp/pash_jBrF4NwwlH +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_2gjsk_mp/tmpoe6vrbuk ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Compilation time: 70.562 ms +Total nodes after optimization: 49 + -- out of which: +Cat nodes: 1 +Eager nodes: 16 +Optimization time: 3.978 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file54], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file55], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file56], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file57], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file58], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file59], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file60], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file45, #file61], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file46, #file62], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file47, #file63], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file48, #file64], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file49, #file65], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file50, #file66], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file51, #file67], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file52, #file68], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file53, #file69], []) +arguments, redirs found for: cat +|-- ([#file54, #file55, #file56, #file57, #file58, #file59, #file60, #file61, #file62, #file63, #file64, #file65, #file66, #file67, #file68, #file69], []) +Backend time: 11.162 ms +Optimized script saved in: /tmp/pash_2gjsk_mp/pash_OY0tRSyOyV +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_2gjsk_mp/pash_jBrF4NwwlH +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_2gjsk_mp/pash_OY0tRSyOyV: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file22" >"#file38" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file23" >"#file39" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file24" >"#file40" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file25" >"#file41" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file26" >"#file42" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file27" >"#file43" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file28" >"#file44" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file29" >"#file45" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file30" >"#file46" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file31" >"#file47" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file32" >"#file48" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file33" >"#file49" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file34" >"#file50" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file35" >"#file51" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file36" >"#file52" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file37" >"#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file54" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file55" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file56" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file57" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file58" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file59" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file60" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file45" "#file61" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file46" "#file62" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file47" "#file63" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file48" "#file64" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file49" "#file65" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file50" "#file66" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file51" "#file67" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file52" "#file68" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file53" "#file69" "/tmp/pash_eager_intermediate_#file16" & } +{ cat "#file54" "#file55" "#file56" "#file57" "#file58" "#file59" "#file60" "#file61" "#file62" "#file63" "#file64" "#file65" "#file66" "#file67" "#file68" "#file69" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_2gjsk_mp/pash_9OhtFGYIps +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_2gjsk_mp/pash_znRh2LU776 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 49373.405 ms +(7) Recovering BaSh variables from: /tmp/pash_2gjsk_mp/pash_znRh2LU776 +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_2gjsk_mp/pash_9OhtFGYIps +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_2gjsk_mp/tmphnfwf6iy +Preprocessing time: 5.244 ms + +real 0m49.700s +user 6m27.276s +sys 0m1.650s +Files /home/ubuntu/pash/evaluation//small_intermediary//minimal_grep_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..63ea83a1c --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_16_distr_no_task_par_eager.time @@ -0,0 +1,369 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_16oDoDivu6 +(1) Bash variables saved in: /tmp/pash_16oDoDivu6 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Compilation time: 260.248 ms +Total nodes after optimization: 49 + -- out of which: +Cat nodes: 1 +Eager nodes: 16 +Optimization time: 9.739 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file38, #file54], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file39, #file55], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file40, #file56], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file41, #file57], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file42, #file58], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file43, #file59], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file44, #file60], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file45, #file61], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file46, #file62], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file47, #file63], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file48, #file64], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file49, #file65], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file50, #file66], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file51, #file67], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file52, #file68], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file53, #file69], []) +arguments, redirs found for: cat +|-- ([#file54, #file55, #file56, #file57, #file58, #file59, #file60, #file61, #file62, #file63, #file64, #file65, #file66, #file67, #file68, #file69], []) +Backend time: 32.359 ms +Optimized script saved in: /tmp/pash_B8RGvOqsuk +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_16oDoDivu6 +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_B8RGvOqsuk: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file22" >"#file38" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file23" >"#file39" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file24" >"#file40" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file25" >"#file41" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file26" >"#file42" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file27" >"#file43" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file28" >"#file44" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file29" >"#file45" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file30" >"#file46" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file31" >"#file47" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file32" >"#file48" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file33" >"#file49" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file34" >"#file50" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file35" >"#file51" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file36" >"#file52" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file37" >"#file53" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file38" "#file54" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file39" "#file55" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file40" "#file56" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file41" "#file57" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file42" "#file58" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file43" "#file59" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file44" "#file60" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file45" "#file61" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file46" "#file62" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file47" "#file63" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file48" "#file64" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file49" "#file65" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file50" "#file66" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file51" "#file67" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file52" "#file68" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file53" "#file69" "/tmp/pash_eager_intermediate_#file16" & } +{ cat "#file54" "#file55" "#file56" "#file57" "#file58" "#file59" "#file60" "#file61" "#file62" "#file63" "#file64" "#file65" "#file66" "#file67" "#file68" "#file69" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (118269) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_ExJnzsSMWL +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_dlFNFeCXa3 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 28386.630 ms +(7) Recovering BaSh variables from: /tmp/pash_dlFNFeCXa3 +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_ExJnzsSMWL +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_gdjqbopb +Preprocessing time: 27.912 ms + +real 0m29.096s +user 7m18.601s +sys 0m3.620s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_grep_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_2_distr_auto_split.time new file mode 100644 index 000000000..ab76d31fd --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_2_distr_auto_split.time @@ -0,0 +1,101 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_l2qwd29m/pash_avyijboW7O +(1) Bash variables saved in: /tmp/pash_l2qwd29m/pash_avyijboW7O +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_l2qwd29m/tmp_lvcpnq0 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Compilation time: 9.393 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 2 +Optimization time: 1.706 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file10, #file12], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file11, #file13], []) +arguments, redirs found for: cat +|-- ([#file12, #file13], []) +Backend time: 1.977 ms +Optimized script saved in: /tmp/pash_l2qwd29m/pash_rEp3dcefaO +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_l2qwd29m/pash_avyijboW7O +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_l2qwd29m/pash_rEp3dcefaO: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file8" >"#file10" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file9" >"#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file10" "#file12" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file11" "#file13" "/tmp/pash_eager_intermediate_#file2" & } +{ cat "#file12" "#file13" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_l2qwd29m/pash_pHIjaEGzvf +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_l2qwd29m/pash_KRDeercc7A +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 113280.381 ms +(7) Recovering BaSh variables from: /tmp/pash_l2qwd29m/pash_KRDeercc7A +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_l2qwd29m/pash_pHIjaEGzvf +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_l2qwd29m/tmpwsjzeml7 +Preprocessing time: 13.49 ms + +real 1m53.739s +user 3m46.454s +sys 0m1.712s +Files /home/ubuntu/pash/evaluation//small_intermediary//minimal_grep_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..7770e69bb --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_2_distr_no_task_par_eager.time @@ -0,0 +1,103 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_z5q7ndXKMN +(1) Bash variables saved in: /tmp/pash_z5q7ndXKMN +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Compilation time: 35.122 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 2 +Optimization time: 2.172 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file10, #file12], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file11, #file13], []) +arguments, redirs found for: cat +|-- ([#file12, #file13], []) +Backend time: 10.032 ms +Optimized script saved in: /tmp/pash_A6QG7RbwxY +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_z5q7ndXKMN +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_A6QG7RbwxY: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file8" >"#file10" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file9" >"#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file10" "#file12" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file11" "#file13" "/tmp/pash_eager_intermediate_#file2" & } +{ cat "#file12" "#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (117481) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_HeTFeTMWYk +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_CPGFgxlnBP +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 239993.526 ms +(7) Recovering BaSh variables from: /tmp/pash_CPGFgxlnBP +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_HeTFeTMWYk +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_urihlwki +Preprocessing time: 26.469 ms + +real 4m0.438s +user 7m58.663s +sys 0m2.014s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_grep_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_2_seq.time new file mode 100644 index 000000000..201210656 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_grep_2_seq.time @@ -0,0 +1,4 @@ + +real 3m47.369s +user 3m45.724s +sys 0m0.893s diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_16_distr_auto_split.time new file mode 100644 index 000000000..567f994db --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_16_distr_auto_split.time @@ -0,0 +1,538 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash__qmfv2mr/pash_t7UAmfpPN5 +(1) Bash variables saved in: /tmp/pash__qmfv2mr/pash_t7UAmfpPN5 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash__qmfv2mr/tmpmwnqgkzy ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 64.72 ms +Total nodes after optimization: 77 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 3.233 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file75, #file76], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file79, #file80], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file77, #file78], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file81, #file82], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file83, #file84], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file69, #file70], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file71, #file72], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file73, #file74], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file89, #file90], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file91, #file92], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file85, #file86], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file87, #file88], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file95, #file96], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file93, #file94], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file48, #file69], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file49, #file70], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file50, #file71], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file51, #file72], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file52, #file73], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file53, #file74], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file75], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file76], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file77], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file78], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file79], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file80], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file81], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file45, #file82], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file46, #file83], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file47, #file84], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file58, #file85], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file59, #file86], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file60, #file87], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file61, #file88], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file54, #file89], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file55, #file90], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file56, #file91], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file57, #file92], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file93], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file94], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file62, #file95], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file96], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file97], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file98], []) +arguments, redirs found for: sort +|-- ([#file97, #file98], []) +Backend time: 14.58 ms +Optimized script saved in: /tmp/pash__qmfv2mr/pash_YtzQBbpoD9 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash__qmfv2mr/pash_t7UAmfpPN5 +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash__qmfv2mr/pash_YtzQBbpoD9: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ sort <"#file22" >"#file38" & } +{ sort <"#file23" >"#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort -m "#file75" "#file76" >"#file54" & } +{ sort -m "#file79" "#file80" >"#file55" & } +{ sort -m "#file77" "#file78" >"#file56" & } +{ sort -m "#file81" "#file82" >"#file57" & } +{ sort -m "#file83" "#file84" >"#file58" & } +{ sort -m "#file69" "#file70" >"#file59" & } +{ sort -m "#file71" "#file72" >"#file60" & } +{ sort -m "#file73" "#file74" >"#file61" & } +{ sort -m "#file89" "#file90" >"#file62" & } +{ sort -m "#file91" "#file92" >"#file63" & } +{ sort -m "#file85" "#file86" >"#file64" & } +{ sort -m "#file87" "#file88" >"#file65" & } +{ sort -m "#file95" "#file96" >"#file66" & } +{ sort -m "#file93" "#file94" >"#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file48" "#file69" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file49" "#file70" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file50" "#file71" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file51" "#file72" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file52" "#file73" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file53" "#file74" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file75" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file76" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file77" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file78" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file79" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file80" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file81" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file45" "#file82" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file46" "#file83" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file47" "#file84" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file58" "#file85" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file59" "#file86" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file60" "#file87" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file61" "#file88" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file54" "#file89" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file55" "#file90" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file56" "#file91" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file57" "#file92" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file93" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file94" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file62" "#file95" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file96" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file97" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file98" "/tmp/pash_eager_intermediate_#file30" & } +{ sort -m "#file97" "#file98" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash__qmfv2mr/pash_z09UE2CChJ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash__qmfv2mr/pash_lrsRGoYhne +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 17594.415 ms +(7) Recovering BaSh variables from: /tmp/pash__qmfv2mr/pash_lrsRGoYhne +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash__qmfv2mr/pash_z09UE2CChJ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash__qmfv2mr/tmpw00zyaat +Preprocessing time: 4.843 ms + +real 0m17.907s +user 1m34.570s +sys 0m24.657s +Files /home/ubuntu/pash/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_16_distr_no_eager.time new file mode 100644 index 000000000..d141429a7 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_16_distr_no_eager.time @@ -0,0 +1,360 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_X03C9X12Q3 +(1) Bash variables saved in: /tmp/pash_X03C9X12Q3 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 265.772 ms +Total nodes after optimization: 47 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 6.829 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file38, #file39], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file40, #file41], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file42, #file43], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file44, #file45], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file46, #file47], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file48, #file49], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file50, #file51], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file52, #file53], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file54, #file55], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file56, #file57], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file58, #file59], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file60, #file61], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file62, #file63], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file64, #file65], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file66, #file67], []) +Backend time: 28.081 ms +Optimized script saved in: /tmp/pash_iTKzZqPh2D +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_X03C9X12Q3 +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_iTKzZqPh2D: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ sort <"#file22" >"#file38" & } +{ sort <"#file23" >"#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort -m "#file38" "#file39" >"#file54" & } +{ sort -m "#file40" "#file41" >"#file55" & } +{ sort -m "#file42" "#file43" >"#file56" & } +{ sort -m "#file44" "#file45" >"#file57" & } +{ sort -m "#file46" "#file47" >"#file58" & } +{ sort -m "#file48" "#file49" >"#file59" & } +{ sort -m "#file50" "#file51" >"#file60" & } +{ sort -m "#file52" "#file53" >"#file61" & } +{ sort -m "#file54" "#file55" >"#file62" & } +{ sort -m "#file56" "#file57" >"#file63" & } +{ sort -m "#file58" "#file59" >"#file64" & } +{ sort -m "#file60" "#file61" >"#file65" & } +{ sort -m "#file62" "#file63" >"#file66" & } +{ sort -m "#file64" "#file65" >"#file67" & } +{ sort -m "#file66" "#file67" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (119741) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_XmeekaJ8Hq +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pWt9X085Or +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 33779.545 ms +(7) Recovering BaSh variables from: /tmp/pash_pWt9X085Or +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_XmeekaJ8Hq +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_lipmmtly +Preprocessing time: 27.861 ms + +real 0m34.486s +user 2m49.032s +sys 0m16.135s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..41540b9aa --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_16_distr_no_task_par_eager.time @@ -0,0 +1,540 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ixjOKuEFhi +(1) Bash variables saved in: /tmp/pash_ixjOKuEFhi +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 270.424 ms +Total nodes after optimization: 77 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 9.381 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file75, #file76], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file79, #file80], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file77, #file78], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file81, #file82], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file83, #file84], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file73, #file74], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file71, #file72], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file69, #file70], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file89, #file90], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file91, #file92], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file87, #file88], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file85, #file86], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file95, #file96], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file93, #file94], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file52, #file69], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file53, #file70], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file50, #file71], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file51, #file72], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file48, #file73], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file49, #file74], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file38, #file75], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file39, #file76], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file42, #file77], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file43, #file78], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file40, #file79], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file41, #file80], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file44, #file81], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file45, #file82], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file46, #file83], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file47, #file84], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file60, #file85], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file61, #file86], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file58, #file87], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file59, #file88], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file54, #file89], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file55, #file90], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file56, #file91], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file57, #file92], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file64, #file93], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file65, #file94], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file62, #file95], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file63, #file96], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file66, #file97], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file67, #file98], []) +arguments, redirs found for: sort +|-- ([#file97, #file98], []) +Backend time: 42.224 ms +Optimized script saved in: /tmp/pash_qYiFUy98uO +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_ixjOKuEFhi +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_qYiFUy98uO: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ sort <"#file22" >"#file38" & } +{ sort <"#file23" >"#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort -m "#file75" "#file76" >"#file54" & } +{ sort -m "#file79" "#file80" >"#file55" & } +{ sort -m "#file77" "#file78" >"#file56" & } +{ sort -m "#file81" "#file82" >"#file57" & } +{ sort -m "#file83" "#file84" >"#file58" & } +{ sort -m "#file73" "#file74" >"#file59" & } +{ sort -m "#file71" "#file72" >"#file60" & } +{ sort -m "#file69" "#file70" >"#file61" & } +{ sort -m "#file89" "#file90" >"#file62" & } +{ sort -m "#file91" "#file92" >"#file63" & } +{ sort -m "#file87" "#file88" >"#file64" & } +{ sort -m "#file85" "#file86" >"#file65" & } +{ sort -m "#file95" "#file96" >"#file66" & } +{ sort -m "#file93" "#file94" >"#file67" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file52" "#file69" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file53" "#file70" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file50" "#file71" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file51" "#file72" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file48" "#file73" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file49" "#file74" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file38" "#file75" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file39" "#file76" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file42" "#file77" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file43" "#file78" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file40" "#file79" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file41" "#file80" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file44" "#file81" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file45" "#file82" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file46" "#file83" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file47" "#file84" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file60" "#file85" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file61" "#file86" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file58" "#file87" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file59" "#file88" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file54" "#file89" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file55" "#file90" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file56" "#file91" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file57" "#file92" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file64" "#file93" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file65" "#file94" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file62" "#file95" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file63" "#file96" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file66" "#file97" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file67" "#file98" "/tmp/pash_eager_intermediate_#file30" & } +{ sort -m "#file97" "#file98" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (120478) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_7kEjlIuC3c +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_vg8V4Eu2nI +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 58038.961 ms +(7) Recovering BaSh variables from: /tmp/pash_vg8V4Eu2nI +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_7kEjlIuC3c +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_cpmuizho +Preprocessing time: 27.031 ms + +real 0m58.773s +user 2m28.550s +sys 0m40.505s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_distr_auto_split.time new file mode 100644 index 000000000..a2b3f25c0 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_distr_auto_split.time @@ -0,0 +1,104 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_m04b0czm/pash_kqqV8RhTh1 +(1) Bash variables saved in: /tmp/pash_m04b0czm/pash_kqqV8RhTh1 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_m04b0czm/tmpw804i1o_ ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 8.804 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 0.63 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file10, #file13], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file11, #file14], []) +arguments, redirs found for: sort +|-- ([#file13, #file14], []) +Backend time: 2.742 ms +Optimized script saved in: /tmp/pash_m04b0czm/pash_QfWggczZgV +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_m04b0czm/pash_kqqV8RhTh1 +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_m04b0czm/pash_QfWggczZgV: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ sort <"#file8" >"#file10" & } +{ sort <"#file9" >"#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file10" "#file13" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file11" "#file14" "/tmp/pash_eager_intermediate_#file2" & } +{ sort -m "#file13" "#file14" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_m04b0czm/pash_akwyA6jkOv +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_m04b0czm/pash_11QnwLW7Kq +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 28889.118 ms +(7) Recovering BaSh variables from: /tmp/pash_m04b0czm/pash_11QnwLW7Kq +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_m04b0czm/pash_akwyA6jkOv +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_m04b0czm/tmp5injv0mv +Preprocessing time: 6.817 ms + +real 0m29.136s +user 0m52.060s +sys 0m7.946s +Files /home/ubuntu/pash/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_distr_no_eager.time new file mode 100644 index 000000000..22d120c35 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_distr_no_eager.time @@ -0,0 +1,94 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_VSSLQaJHuv +(1) Bash variables saved in: /tmp/pash_VSSLQaJHuv +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 34.831 ms +Total nodes after optimization: 5 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 1.449 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file10, #file11], []) +Backend time: 9.701 ms +Optimized script saved in: /tmp/pash_0Asjs5o36Z +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_VSSLQaJHuv +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_0Asjs5o36Z: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ sort <"#file8" >"#file10" & } +{ sort <"#file9" >"#file11" & } +{ sort -m "#file10" "#file11" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (118976) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_ty0hFArjsy +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_bX9kaetm3W +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 73083.352 ms +(7) Recovering BaSh variables from: /tmp/pash_bX9kaetm3W +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_ty0hFArjsy +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_qsaqtuxj +Preprocessing time: 27.33 ms + +real 1m13.529s +user 2m6.651s +sys 0m10.672s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..20e18540d --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_distr_no_task_par_eager.time @@ -0,0 +1,106 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_sJvlUxddFr +(1) Bash variables saved in: /tmp/pash_sJvlUxddFr +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 35.076 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 1.912 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file10, #file13], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file11, #file14], []) +arguments, redirs found for: sort +|-- ([#file13, #file14], []) +Backend time: 9.986 ms +Optimized script saved in: /tmp/pash_d0OZZybm54 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_sJvlUxddFr +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_d0OZZybm54: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ sort <"#file8" >"#file10" & } +{ sort <"#file9" >"#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file10" "#file13" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file11" "#file14" "/tmp/pash_eager_intermediate_#file2" & } +{ sort -m "#file13" "#file14" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (119201) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_OCVOjvRinX +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_0xlJ7Q8dLB +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 80657.983 ms +(7) Recovering BaSh variables from: /tmp/pash_0xlJ7Q8dLB +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_OCVOjvRinX +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_xwibpwzm +Preprocessing time: 27.305 ms + +real 1m21.093s +user 2m5.093s +sys 0m14.027s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_seq.time new file mode 100644 index 000000000..6599a9230 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/minimal_sort_2_seq.time @@ -0,0 +1,4 @@ + +real 1m0.371s +user 0m48.086s +sys 0m5.101s diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_16_distr_auto_split.time new file mode 100644 index 000000000..e45102cec --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_16_distr_auto_split.time @@ -0,0 +1,1259 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_l_jtdowf/pash_ys9BmAHIiu +(1) Bash variables saved in: /tmp/pash_l_jtdowf/pash_ys9BmAHIiu +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_l_jtdowf/tmpm4q4cjpz ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.177 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_l_jtdowf/pash_ys9BmAHIiu +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_l_jtdowf/tmp9lp5ohd_: +mkfifo s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_l_jtdowf/pash_fq9PIRqFOm +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_l_jtdowf/pash_MKMrKur8eN +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 20.394 ms +(7) Recovering BaSh variables from: /tmp/pash_l_jtdowf/pash_MKMrKur8eN +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_l_jtdowf/pash_fq9PIRqFOm +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_l_jtdowf/pash_gGZ6PrLXG4 +(1) Bash variables saved in: /tmp/pash_l_jtdowf/pash_gGZ6PrLXG4 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_l_jtdowf/tmpt096a__r ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 142.6 ms +Total nodes after optimization: 173 + -- out of which: +Cat nodes: 0 +Eager nodes: 62 +Optimization time: 9.585 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file158, #file159], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file162, #file163], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file160, #file161], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file196, #file197], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file206, #file207], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file208, #file209], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file214, #file215], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file192, #file193], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file194, #file195], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file198, #file199], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file200, #file201], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file202, #file203], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file204, #file205], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file210, #file211], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file212, #file213], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file216, #file217], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file141, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file142, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file143, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file144, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file145, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file146, #file201], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file147, #file202], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file148, #file203], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file149, #file204], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file150, #file205], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file206], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file207], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file208], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file209], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file151, #file210], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file152, #file211], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file153, #file212], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file154, #file213], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file214], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file215], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file155, #file216], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file156, #file217], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:45:s1, #file218], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:46:s2, #file219], []) +arguments, redirs found for: comm +|-- ([#file218, #file219], []) +Backend time: 43.963 ms +Optimized script saved in: /tmp/pash_l_jtdowf/pash_irreIYoH2I +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_l_jtdowf/pash_gGZ6PrLXG4 +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_l_jtdowf/pash_irreIYoH2I: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file40" +mkfifo "#file42" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +{ cut -d " " -f 1 "#file48" & } +{ cut -d " " -f 1 "#file49" & } +{ cut -d " " -f 1 "#file50" & } +{ cut -d " " -f 1 "#file51" & } +{ cut -d " " -f 1 "#file52" & } +{ cut -d " " -f 1 "#file53" & } +{ cut -d " " -f 1 "#file54" & } +{ cut -d " " -f 1 "#file55" & } +{ cut -d " " -f 1 "#file56" & } +{ cut -d " " -f 1 "#file57" & } +{ cut -d " " -f 1 "#file58" & } +{ cut -d " " -f 1 "#file59" & } +{ cut -d " " -f 1 "#file60" & } +{ cut -d " " -f 1 "#file61" & } +{ cut -d " " -f 1 "#file62" & } +{ cut -d " " -f 1 "#file63" & } +{ cut -d " " -f 1 "#file64" & } +{ cut -d " " -f 1 "#file65" & } +{ cut -d " " -f 1 "#file66" & } +{ cut -d " " -f 1 "#file67" & } +{ cut -d " " -f 1 "#file68" & } +{ cut -d " " -f 1 "#file69" & } +{ cut -d " " -f 1 "#file70" & } +{ cut -d " " -f 1 "#file71" & } +{ cut -d " " -f 1 "#file72" & } +{ cut -d " " -f 1 "#file73" & } +{ cut -d " " -f 1 "#file74" & } +{ cut -d " " -f 1 "#file75" & } +{ cut -d " " -f 1 "#file76" & } +{ cut -d " " -f 1 "#file77" & } +{ cut -d " " -f 1 "#file78" & } +{ cut -d " " -f 1 "#file79" & } +{ tr [:lower] [:upper] <"#file48" >"#file80" & } +{ tr [:lower] [:upper] <"#file49" >"#file81" & } +{ tr [:lower] [:upper] <"#file50" >"#file82" & } +{ tr [:lower] [:upper] <"#file51" >"#file83" & } +{ tr [:lower] [:upper] <"#file52" >"#file84" & } +{ tr [:lower] [:upper] <"#file53" >"#file85" & } +{ tr [:lower] [:upper] <"#file54" >"#file86" & } +{ tr [:lower] [:upper] <"#file55" >"#file87" & } +{ tr [:lower] [:upper] <"#file56" >"#file88" & } +{ tr [:lower] [:upper] <"#file57" >"#file89" & } +{ tr [:lower] [:upper] <"#file58" >"#file90" & } +{ tr [:lower] [:upper] <"#file59" >"#file91" & } +{ tr [:lower] [:upper] <"#file60" >"#file92" & } +{ tr [:lower] [:upper] <"#file61" >"#file93" & } +{ tr [:lower] [:upper] <"#file62" >"#file94" & } +{ tr [:lower] [:upper] <"#file63" >"#file95" & } +{ sort <"#file64" >"#file96" & } +{ sort <"#file65" >"#file97" & } +{ sort <"#file66" >"#file98" & } +{ sort <"#file67" >"#file99" & } +{ sort <"#file68" >"#file100" & } +{ sort <"#file69" >"#file101" & } +{ sort <"#file70" >"#file102" & } +{ sort <"#file71" >"#file103" & } +{ sort <"#file72" >"#file104" & } +{ sort <"#file73" >"#file105" & } +{ sort <"#file74" >"#file106" & } +{ sort <"#file75" >"#file107" & } +{ sort <"#file76" >"#file108" & } +{ sort <"#file77" >"#file109" & } +{ sort <"#file78" >"#file110" & } +{ sort <"#file79" >"#file111" & } +{ sort -m "#file166" "#file167" >"#file112" & } +{ sort -m "#file168" "#file169" >"#file113" & } +{ sort -m "#file158" "#file159" >"#file114" & } +{ sort -m "#file162" "#file163" >"#file115" & } +{ sort -m "#file170" "#file171" >"#file116" & } +{ sort -m "#file160" "#file161" >"#file117" & } +{ sort -m "#file164" "#file165" >"#file118" & } +{ sort -m "#file172" "#file173" >"#file119" & } +{ sort -m "#file196" "#file197" >"#file120" & } +{ sort -m "#file186" "#file187" >"#file121" & } +{ sort -m "#file188" "#file189" >"#file122" & } +{ sort -m "#file190" "#file191" >"#file123" & } +{ sort -m "#file206" "#file207" >"#file124" & } +{ sort -m "#file208" "#file209" >"#file125" & } +{ sort -m "#file214" "#file215" >s2 & } +{ sort <"#file80" >"#file127" & } +{ sort <"#file81" >"#file128" & } +{ sort <"#file82" >"#file129" & } +{ sort <"#file83" >"#file130" & } +{ sort <"#file84" >"#file131" & } +{ sort <"#file85" >"#file132" & } +{ sort <"#file86" >"#file133" & } +{ sort <"#file87" >"#file134" & } +{ sort <"#file88" >"#file135" & } +{ sort <"#file89" >"#file136" & } +{ sort <"#file90" >"#file137" & } +{ sort <"#file91" >"#file138" & } +{ sort <"#file92" >"#file139" & } +{ sort <"#file93" >"#file140" & } +{ sort <"#file94" >"#file141" & } +{ sort <"#file95" >"#file142" & } +{ sort -m "#file174" "#file175" >"#file143" & } +{ sort -m "#file178" "#file179" >"#file144" & } +{ sort -m "#file176" "#file177" >"#file145" & } +{ sort -m "#file192" "#file193" >"#file146" & } +{ sort -m "#file180" "#file181" >"#file147" & } +{ sort -m "#file182" "#file183" >"#file148" & } +{ sort -m "#file194" "#file195" >"#file149" & } +{ sort -m "#file184" "#file185" >"#file150" & } +{ sort -m "#file198" "#file199" >"#file151" & } +{ sort -m "#file200" "#file201" >"#file152" & } +{ sort -m "#file202" "#file203" >"#file153" & } +{ sort -m "#file204" "#file205" >"#file154" & } +{ sort -m "#file210" "#file211" >"#file155" & } +{ sort -m "#file212" "#file213" >"#file156" & } +{ sort -m "#file216" "#file217" >s1 & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file158" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file159" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file160" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file161" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file162" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file163" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file164" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file165" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file166" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file167" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file168" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file169" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file170" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file171" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file172" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file173" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file174" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file175" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file176" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file177" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file178" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file179" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file180" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file181" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file182" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file183" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file141" "#file184" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file142" "#file185" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file186" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file187" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file188" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file189" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file190" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file191" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file192" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file193" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file194" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file195" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file196" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file197" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file143" "#file198" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file144" "#file199" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file145" "#file200" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file146" "#file201" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file147" "#file202" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file148" "#file203" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file149" "#file204" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file150" "#file205" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file206" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file207" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file208" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file209" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file151" "#file210" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file152" "#file211" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file153" "#file212" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file154" "#file213" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file214" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file215" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file155" "#file216" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file156" "#file217" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh s1 "#file218" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh s2 "#file219" "/tmp/pash_eager_intermediate_#file62" & } +{ comm -23 "#file218" "#file219" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_l_jtdowf/pash_fY7D6bob0O +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_l_jtdowf/pash_gAmlGsoaJm +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 22134.415 ms +(7) Recovering BaSh variables from: /tmp/pash_l_jtdowf/pash_gAmlGsoaJm +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_l_jtdowf/pash_fY7D6bob0O +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_l_jtdowf/pash_UxbnWlfpAJ +(1) Bash variables saved in: /tmp/pash_l_jtdowf/pash_UxbnWlfpAJ +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_l_jtdowf/tmpagwd3tzt ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.163 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_l_jtdowf/pash_UxbnWlfpAJ +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_l_jtdowf/tmphdwuin73: +rm s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_l_jtdowf/pash_a1JrKGwLEp +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_l_jtdowf/pash_uAKieCtfwG +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 21.387 ms +(7) Recovering BaSh variables from: /tmp/pash_l_jtdowf/pash_uAKieCtfwG +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_l_jtdowf/pash_a1JrKGwLEp +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_l_jtdowf/tmpagbw6fvb +Preprocessing time: 6.211 ms + +real 0m22.912s +user 2m28.036s +sys 0m10.132s +Files /home/ubuntu/pash/evaluation//small_intermediary//set-diff_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_16_distr_no_eager.time new file mode 100644 index 000000000..91b09abd6 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_16_distr_no_eager.time @@ -0,0 +1,891 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_SPEBiH90sg +(1) Bash variables saved in: /tmp/pash_SPEBiH90sg +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.222 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_SPEBiH90sg +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hrtxhcut: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_f2efGGuRa7 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_AQw9e7tyUn +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 48.010 ms +(7) Recovering BaSh variables from: /tmp/pash_AQw9e7tyUn +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_f2efGGuRa7 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_eUtEWzd5LB +(1) Bash variables saved in: /tmp/pash_eUtEWzd5LB +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 568.214 ms +Total nodes after optimization: 111 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 19.467 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file96, #file97], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file98, #file99], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file100, #file101], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file102, #file103], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file104, #file105], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file106, #file107], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file108, #file109], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file110, #file111], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file112, #file113], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file114, #file115], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file116, #file117], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file118, #file119], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file120, #file121], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file122, #file123], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file124, #file125], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file127, #file128], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file129, #file130], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file131, #file132], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file133, #file134], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file135, #file136], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file137, #file138], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file139, #file140], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file141, #file142], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file143, #file144], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file145, #file146], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file147, #file148], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file149, #file150], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file151, #file152], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file153, #file154], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file155, #file156], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: comm +|-- ([fid:45:s1, fid:46:s2], []) +Backend time: 53.215 ms +Optimized script saved in: /tmp/pash_hmEwfPfo9o +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_eUtEWzd5LB +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hmEwfPfo9o: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file40" +mkfifo "#file42" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +{ cut -d " " -f 1 "#file48" & } +{ cut -d " " -f 1 "#file49" & } +{ cut -d " " -f 1 "#file50" & } +{ cut -d " " -f 1 "#file51" & } +{ cut -d " " -f 1 "#file52" & } +{ cut -d " " -f 1 "#file53" & } +{ cut -d " " -f 1 "#file54" & } +{ cut -d " " -f 1 "#file55" & } +{ cut -d " " -f 1 "#file56" & } +{ cut -d " " -f 1 "#file57" & } +{ cut -d " " -f 1 "#file58" & } +{ cut -d " " -f 1 "#file59" & } +{ cut -d " " -f 1 "#file60" & } +{ cut -d " " -f 1 "#file61" & } +{ cut -d " " -f 1 "#file62" & } +{ cut -d " " -f 1 "#file63" & } +{ cut -d " " -f 1 "#file64" & } +{ cut -d " " -f 1 "#file65" & } +{ cut -d " " -f 1 "#file66" & } +{ cut -d " " -f 1 "#file67" & } +{ cut -d " " -f 1 "#file68" & } +{ cut -d " " -f 1 "#file69" & } +{ cut -d " " -f 1 "#file70" & } +{ cut -d " " -f 1 "#file71" & } +{ cut -d " " -f 1 "#file72" & } +{ cut -d " " -f 1 "#file73" & } +{ cut -d " " -f 1 "#file74" & } +{ cut -d " " -f 1 "#file75" & } +{ cut -d " " -f 1 "#file76" & } +{ cut -d " " -f 1 "#file77" & } +{ cut -d " " -f 1 "#file78" & } +{ cut -d " " -f 1 "#file79" & } +{ tr [:lower] [:upper] <"#file48" >"#file80" & } +{ tr [:lower] [:upper] <"#file49" >"#file81" & } +{ tr [:lower] [:upper] <"#file50" >"#file82" & } +{ tr [:lower] [:upper] <"#file51" >"#file83" & } +{ tr [:lower] [:upper] <"#file52" >"#file84" & } +{ tr [:lower] [:upper] <"#file53" >"#file85" & } +{ tr [:lower] [:upper] <"#file54" >"#file86" & } +{ tr [:lower] [:upper] <"#file55" >"#file87" & } +{ tr [:lower] [:upper] <"#file56" >"#file88" & } +{ tr [:lower] [:upper] <"#file57" >"#file89" & } +{ tr [:lower] [:upper] <"#file58" >"#file90" & } +{ tr [:lower] [:upper] <"#file59" >"#file91" & } +{ tr [:lower] [:upper] <"#file60" >"#file92" & } +{ tr [:lower] [:upper] <"#file61" >"#file93" & } +{ tr [:lower] [:upper] <"#file62" >"#file94" & } +{ tr [:lower] [:upper] <"#file63" >"#file95" & } +{ sort <"#file64" >"#file96" & } +{ sort <"#file65" >"#file97" & } +{ sort <"#file66" >"#file98" & } +{ sort <"#file67" >"#file99" & } +{ sort <"#file68" >"#file100" & } +{ sort <"#file69" >"#file101" & } +{ sort <"#file70" >"#file102" & } +{ sort <"#file71" >"#file103" & } +{ sort <"#file72" >"#file104" & } +{ sort <"#file73" >"#file105" & } +{ sort <"#file74" >"#file106" & } +{ sort <"#file75" >"#file107" & } +{ sort <"#file76" >"#file108" & } +{ sort <"#file77" >"#file109" & } +{ sort <"#file78" >"#file110" & } +{ sort <"#file79" >"#file111" & } +{ sort -m "#file96" "#file97" >"#file112" & } +{ sort -m "#file98" "#file99" >"#file113" & } +{ sort -m "#file100" "#file101" >"#file114" & } +{ sort -m "#file102" "#file103" >"#file115" & } +{ sort -m "#file104" "#file105" >"#file116" & } +{ sort -m "#file106" "#file107" >"#file117" & } +{ sort -m "#file108" "#file109" >"#file118" & } +{ sort -m "#file110" "#file111" >"#file119" & } +{ sort -m "#file112" "#file113" >"#file120" & } +{ sort -m "#file114" "#file115" >"#file121" & } +{ sort -m "#file116" "#file117" >"#file122" & } +{ sort -m "#file118" "#file119" >"#file123" & } +{ sort -m "#file120" "#file121" >"#file124" & } +{ sort -m "#file122" "#file123" >"#file125" & } +{ sort -m "#file124" "#file125" >s2 & } +{ sort <"#file80" >"#file127" & } +{ sort <"#file81" >"#file128" & } +{ sort <"#file82" >"#file129" & } +{ sort <"#file83" >"#file130" & } +{ sort <"#file84" >"#file131" & } +{ sort <"#file85" >"#file132" & } +{ sort <"#file86" >"#file133" & } +{ sort <"#file87" >"#file134" & } +{ sort <"#file88" >"#file135" & } +{ sort <"#file89" >"#file136" & } +{ sort <"#file90" >"#file137" & } +{ sort <"#file91" >"#file138" & } +{ sort <"#file92" >"#file139" & } +{ sort <"#file93" >"#file140" & } +{ sort <"#file94" >"#file141" & } +{ sort <"#file95" >"#file142" & } +{ sort -m "#file127" "#file128" >"#file143" & } +{ sort -m "#file129" "#file130" >"#file144" & } +{ sort -m "#file131" "#file132" >"#file145" & } +{ sort -m "#file133" "#file134" >"#file146" & } +{ sort -m "#file135" "#file136" >"#file147" & } +{ sort -m "#file137" "#file138" >"#file148" & } +{ sort -m "#file139" "#file140" >"#file149" & } +{ sort -m "#file141" "#file142" >"#file150" & } +{ sort -m "#file143" "#file144" >"#file151" & } +{ sort -m "#file145" "#file146" >"#file152" & } +{ sort -m "#file147" "#file148" >"#file153" & } +{ sort -m "#file149" "#file150" >"#file154" & } +{ sort -m "#file151" "#file152" >"#file155" & } +{ sort -m "#file153" "#file154" >"#file156" & } +{ sort -m "#file155" "#file156" >s1 & } +{ comm -23 s1 s2 & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (11396) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_24Wcib8ezS +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_C4sVoCkH2w +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 45878.718 ms +(7) Recovering BaSh variables from: /tmp/pash_C4sVoCkH2w +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_24Wcib8ezS +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_bwtrMtaX2c +(1) Bash variables saved in: /tmp/pash_bwtrMtaX2c +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.21 ms +Optimization time: 0.004 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_bwtrMtaX2c +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_fncefnje: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_EEyz3BtynQ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_YiUCIA4wca +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 49.997 ms +(7) Recovering BaSh variables from: /tmp/pash_YiUCIA4wca +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_EEyz3BtynQ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_cpsfjztz +Preprocessing time: 40.938 ms + +real 0m47.472s +user 7m24.472s +sys 0m7.964s +Files /home/nikos/dish/evaluation//small_intermediary//set-diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..8fae0867c --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_16_distr_no_task_par_eager.time @@ -0,0 +1,1263 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_iMMu72TLTs +(1) Bash variables saved in: /tmp/pash_iMMu72TLTs +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.225 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_iMMu72TLTs +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_jtrotadq: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_TBxLMidE7L +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_lH3gd2qlty +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 49.562 ms +(7) Recovering BaSh variables from: /tmp/pash_lH3gd2qlty +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_TBxLMidE7L +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_pqGTyXpNtS +(1) Bash variables saved in: /tmp/pash_pqGTyXpNtS +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 586.74 ms +Total nodes after optimization: 173 + -- out of which: +Cat nodes: 0 +Eager nodes: 62 +Optimization time: 24.222 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file162, #file163], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file158, #file159], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file160, #file161], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file206, #file207], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file204, #file205], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file214, #file215], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file192, #file193], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file196, #file197], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file194, #file195], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file198, #file199], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file208, #file209], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file200, #file201], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file202, #file203], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file210, #file211], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file212, #file213], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file216, #file217], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file104, #file158], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file105, #file159], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file110, #file160], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file111, #file161], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file98, #file162], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file99, #file163], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file100, #file164], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file101, #file165], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file102, #file166], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file103, #file167], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file106, #file168], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file107, #file169], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file108, #file170], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file109, #file171], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file96, #file172], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file97, #file173], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file127, #file174], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file128, #file175], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file129, #file176], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file130, #file177], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file135, #file178], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file136, #file179], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file141, #file180], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file142, #file181], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file116, #file182], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file117, #file183], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file118, #file184], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file119, #file185], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file112, #file186], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file113, #file187], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file114, #file188], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file115, #file189], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file131, #file190], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file132, #file191], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file133, #file192], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file134, #file193], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file139, #file194], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file140, #file195], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file137, #file196], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file138, #file197], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file143, #file198], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file144, #file199], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file147, #file200], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file148, #file201], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file149, #file202], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file150, #file203], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file122, #file204], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file123, #file205], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file120, #file206], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file121, #file207], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file145, #file208], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file146, #file209], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file151, #file210], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file152, #file211], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file153, #file212], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file154, #file213], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file124, #file214], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file125, #file215], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file155, #file216], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file156, #file217], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:45:s1, #file218], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:46:s2, #file219], []) +arguments, redirs found for: comm +|-- ([#file218, #file219], []) +Backend time: 80.586 ms +Optimized script saved in: /tmp/pash_ekC70rCMH3 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_pqGTyXpNtS +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_ekC70rCMH3: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file40" +mkfifo "#file42" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +{ cut -d " " -f 1 "#file48" & } +{ cut -d " " -f 1 "#file49" & } +{ cut -d " " -f 1 "#file50" & } +{ cut -d " " -f 1 "#file51" & } +{ cut -d " " -f 1 "#file52" & } +{ cut -d " " -f 1 "#file53" & } +{ cut -d " " -f 1 "#file54" & } +{ cut -d " " -f 1 "#file55" & } +{ cut -d " " -f 1 "#file56" & } +{ cut -d " " -f 1 "#file57" & } +{ cut -d " " -f 1 "#file58" & } +{ cut -d " " -f 1 "#file59" & } +{ cut -d " " -f 1 "#file60" & } +{ cut -d " " -f 1 "#file61" & } +{ cut -d " " -f 1 "#file62" & } +{ cut -d " " -f 1 "#file63" & } +{ cut -d " " -f 1 "#file64" & } +{ cut -d " " -f 1 "#file65" & } +{ cut -d " " -f 1 "#file66" & } +{ cut -d " " -f 1 "#file67" & } +{ cut -d " " -f 1 "#file68" & } +{ cut -d " " -f 1 "#file69" & } +{ cut -d " " -f 1 "#file70" & } +{ cut -d " " -f 1 "#file71" & } +{ cut -d " " -f 1 "#file72" & } +{ cut -d " " -f 1 "#file73" & } +{ cut -d " " -f 1 "#file74" & } +{ cut -d " " -f 1 "#file75" & } +{ cut -d " " -f 1 "#file76" & } +{ cut -d " " -f 1 "#file77" & } +{ cut -d " " -f 1 "#file78" & } +{ cut -d " " -f 1 "#file79" & } +{ tr [:lower] [:upper] <"#file48" >"#file80" & } +{ tr [:lower] [:upper] <"#file49" >"#file81" & } +{ tr [:lower] [:upper] <"#file50" >"#file82" & } +{ tr [:lower] [:upper] <"#file51" >"#file83" & } +{ tr [:lower] [:upper] <"#file52" >"#file84" & } +{ tr [:lower] [:upper] <"#file53" >"#file85" & } +{ tr [:lower] [:upper] <"#file54" >"#file86" & } +{ tr [:lower] [:upper] <"#file55" >"#file87" & } +{ tr [:lower] [:upper] <"#file56" >"#file88" & } +{ tr [:lower] [:upper] <"#file57" >"#file89" & } +{ tr [:lower] [:upper] <"#file58" >"#file90" & } +{ tr [:lower] [:upper] <"#file59" >"#file91" & } +{ tr [:lower] [:upper] <"#file60" >"#file92" & } +{ tr [:lower] [:upper] <"#file61" >"#file93" & } +{ tr [:lower] [:upper] <"#file62" >"#file94" & } +{ tr [:lower] [:upper] <"#file63" >"#file95" & } +{ sort <"#file64" >"#file96" & } +{ sort <"#file65" >"#file97" & } +{ sort <"#file66" >"#file98" & } +{ sort <"#file67" >"#file99" & } +{ sort <"#file68" >"#file100" & } +{ sort <"#file69" >"#file101" & } +{ sort <"#file70" >"#file102" & } +{ sort <"#file71" >"#file103" & } +{ sort <"#file72" >"#file104" & } +{ sort <"#file73" >"#file105" & } +{ sort <"#file74" >"#file106" & } +{ sort <"#file75" >"#file107" & } +{ sort <"#file76" >"#file108" & } +{ sort <"#file77" >"#file109" & } +{ sort <"#file78" >"#file110" & } +{ sort <"#file79" >"#file111" & } +{ sort -m "#file172" "#file173" >"#file112" & } +{ sort -m "#file162" "#file163" >"#file113" & } +{ sort -m "#file164" "#file165" >"#file114" & } +{ sort -m "#file166" "#file167" >"#file115" & } +{ sort -m "#file158" "#file159" >"#file116" & } +{ sort -m "#file168" "#file169" >"#file117" & } +{ sort -m "#file170" "#file171" >"#file118" & } +{ sort -m "#file160" "#file161" >"#file119" & } +{ sort -m "#file186" "#file187" >"#file120" & } +{ sort -m "#file188" "#file189" >"#file121" & } +{ sort -m "#file182" "#file183" >"#file122" & } +{ sort -m "#file184" "#file185" >"#file123" & } +{ sort -m "#file206" "#file207" >"#file124" & } +{ sort -m "#file204" "#file205" >"#file125" & } +{ sort -m "#file214" "#file215" >s2 & } +{ sort <"#file80" >"#file127" & } +{ sort <"#file81" >"#file128" & } +{ sort <"#file82" >"#file129" & } +{ sort <"#file83" >"#file130" & } +{ sort <"#file84" >"#file131" & } +{ sort <"#file85" >"#file132" & } +{ sort <"#file86" >"#file133" & } +{ sort <"#file87" >"#file134" & } +{ sort <"#file88" >"#file135" & } +{ sort <"#file89" >"#file136" & } +{ sort <"#file90" >"#file137" & } +{ sort <"#file91" >"#file138" & } +{ sort <"#file92" >"#file139" & } +{ sort <"#file93" >"#file140" & } +{ sort <"#file94" >"#file141" & } +{ sort <"#file95" >"#file142" & } +{ sort -m "#file174" "#file175" >"#file143" & } +{ sort -m "#file176" "#file177" >"#file144" & } +{ sort -m "#file190" "#file191" >"#file145" & } +{ sort -m "#file192" "#file193" >"#file146" & } +{ sort -m "#file178" "#file179" >"#file147" & } +{ sort -m "#file196" "#file197" >"#file148" & } +{ sort -m "#file194" "#file195" >"#file149" & } +{ sort -m "#file180" "#file181" >"#file150" & } +{ sort -m "#file198" "#file199" >"#file151" & } +{ sort -m "#file208" "#file209" >"#file152" & } +{ sort -m "#file200" "#file201" >"#file153" & } +{ sort -m "#file202" "#file203" >"#file154" & } +{ sort -m "#file210" "#file211" >"#file155" & } +{ sort -m "#file212" "#file213" >"#file156" & } +{ sort -m "#file216" "#file217" >s1 & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file104" "#file158" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file105" "#file159" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file110" "#file160" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file111" "#file161" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file98" "#file162" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file99" "#file163" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file100" "#file164" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file101" "#file165" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file102" "#file166" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file103" "#file167" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file106" "#file168" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file107" "#file169" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file108" "#file170" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file109" "#file171" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file96" "#file172" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file97" "#file173" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file127" "#file174" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file128" "#file175" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file129" "#file176" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file130" "#file177" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file135" "#file178" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file136" "#file179" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file141" "#file180" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file142" "#file181" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file116" "#file182" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file117" "#file183" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file118" "#file184" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file119" "#file185" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file112" "#file186" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file113" "#file187" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file114" "#file188" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file115" "#file189" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file131" "#file190" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file132" "#file191" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file133" "#file192" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file134" "#file193" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file139" "#file194" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file140" "#file195" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file137" "#file196" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file138" "#file197" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file143" "#file198" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file144" "#file199" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file147" "#file200" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file148" "#file201" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file149" "#file202" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file150" "#file203" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file122" "#file204" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file123" "#file205" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file120" "#file206" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file121" "#file207" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file145" "#file208" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file146" "#file209" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file151" "#file210" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file152" "#file211" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file153" "#file212" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file154" "#file213" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file124" "#file214" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file125" "#file215" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file155" "#file216" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file156" "#file217" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s1 "#file218" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s2 "#file219" "/tmp/pash_eager_intermediate_#file62" & } +{ comm -23 "#file218" "#file219" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (12733) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_8M85eet0C2 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_fxRssefG11 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47280.834 ms +(7) Recovering BaSh variables from: /tmp/pash_fxRssefG11 +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_8M85eet0C2 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_YmuNLyVCME +(1) Bash variables saved in: /tmp/pash_YmuNLyVCME +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.212 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_YmuNLyVCME +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_urczmkbr: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_Tj9hvTn3L0 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_aw6soYvHJQ +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 52.203 ms +(7) Recovering BaSh variables from: /tmp/pash_aw6soYvHJQ +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_Tj9hvTn3L0 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_xpanbtnc +Preprocessing time: 42.269 ms + +real 0m48.927s +user 6m48.120s +sys 0m33.763s +Files /home/nikos/dish/evaluation//small_intermediary//set-diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_distr_auto_split.time new file mode 100644 index 000000000..891fb1e29 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_distr_auto_split.time @@ -0,0 +1,279 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_hpsh5cnc/pash_g58mL2WoyH +(1) Bash variables saved in: /tmp/pash_hpsh5cnc/pash_g58mL2WoyH +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_hpsh5cnc/tmp60j41nw3 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.178 ms +Optimization time: 0.001 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_hpsh5cnc/pash_g58mL2WoyH +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hpsh5cnc/tmp470zhd3_: +mkfifo s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_hpsh5cnc/pash_ZZ8L41RPod +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_hpsh5cnc/pash_fcfMa5ZfjQ +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 20.838 ms +(7) Recovering BaSh variables from: /tmp/pash_hpsh5cnc/pash_fcfMa5ZfjQ +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_hpsh5cnc/pash_ZZ8L41RPod +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_hpsh5cnc/pash_OhevfiI6yX +(1) Bash variables saved in: /tmp/pash_hpsh5cnc/pash_OhevfiI6yX +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_hpsh5cnc/tmpt22w1p4a ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 19.998 ms +Total nodes after optimization: 19 + -- out of which: +Cat nodes: 0 +Eager nodes: 6 +Optimization time: 1.576 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file32, #file33], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file34, #file35], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file26, #file32], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file27, #file33], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file34], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file35], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:17:s1, #file36], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:18:s2, #file37], []) +arguments, redirs found for: comm +|-- ([#file36, #file37], []) +Backend time: 4.216 ms +Optimized script saved in: /tmp/pash_hpsh5cnc/pash_f7XA55F5AB +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_hpsh5cnc/pash_OhevfiI6yX +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hpsh5cnc/pash_f7XA55F5AB: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file12" +mkfifo "#file14" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +{ cut -d " " -f 1 "#file20" & } +{ cut -d " " -f 1 "#file21" & } +{ cut -d " " -f 1 "#file22" & } +{ cut -d " " -f 1 "#file23" & } +{ tr [:lower] [:upper] <"#file20" >"#file24" & } +{ tr [:lower] [:upper] <"#file21" >"#file25" & } +{ sort <"#file22" >"#file26" & } +{ sort <"#file23" >"#file27" & } +{ sort -m "#file32" "#file33" >s2 & } +{ sort <"#file24" >"#file29" & } +{ sort <"#file25" >"#file30" & } +{ sort -m "#file34" "#file35" >s1 & } +{ /home/ubuntu/pash/runtime/eager.sh "#file26" "#file32" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file27" "#file33" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file34" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file35" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh s1 "#file36" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh s2 "#file37" "/tmp/pash_eager_intermediate_#file6" & } +{ comm -23 "#file36" "#file37" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_hpsh5cnc/pash_XZUmTkDFr7 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_hpsh5cnc/pash_lcqMHIqcIn +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 24166.327 ms +(7) Recovering BaSh variables from: /tmp/pash_hpsh5cnc/pash_lcqMHIqcIn +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_hpsh5cnc/pash_XZUmTkDFr7 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_hpsh5cnc/pash_l1SnibWQzj +(1) Bash variables saved in: /tmp/pash_hpsh5cnc/pash_l1SnibWQzj +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_hpsh5cnc/tmp9ax2obqb ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.181 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_hpsh5cnc/pash_l1SnibWQzj +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hpsh5cnc/tmp2kv3pd44: +rm s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_hpsh5cnc/pash_O2Mjl4CcM8 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_hpsh5cnc/pash_a01kvLvDVJ +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 21.702 ms +(7) Recovering BaSh variables from: /tmp/pash_hpsh5cnc/pash_a01kvLvDVJ +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_hpsh5cnc/pash_O2Mjl4CcM8 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_hpsh5cnc/tmpcozcojf9 +Preprocessing time: 6.246 ms + +real 0m24.788s +user 1m33.138s +sys 0m4.803s +Files /home/ubuntu/pash/evaluation//small_intermediary//set-diff_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_distr_no_eager.time new file mode 100644 index 000000000..023b9f939 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_distr_no_eager.time @@ -0,0 +1,247 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_URyslXwot5 +(1) Bash variables saved in: /tmp/pash_URyslXwot5 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.227 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_URyslXwot5 +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_maalkagu: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_luTuPjyYFY +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_G7dx5VsVke +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 46.818 ms +(7) Recovering BaSh variables from: /tmp/pash_G7dx5VsVke +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_luTuPjyYFY +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_SqalxQO147 +(1) Bash variables saved in: /tmp/pash_SqalxQO147 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 70.011 ms +Total nodes after optimization: 13 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 4.585 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file26, #file27], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file29, #file30], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: comm +|-- ([fid:17:s1, fid:18:s2], []) +Backend time: 12.872 ms +Optimized script saved in: /tmp/pash_YjU3DpMYce +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_SqalxQO147 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_YjU3DpMYce: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file12" +mkfifo "#file14" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +{ cut -d " " -f 1 "#file20" & } +{ cut -d " " -f 1 "#file21" & } +{ cut -d " " -f 1 "#file22" & } +{ cut -d " " -f 1 "#file23" & } +{ tr [:lower] [:upper] <"#file20" >"#file24" & } +{ tr [:lower] [:upper] <"#file21" >"#file25" & } +{ sort <"#file22" >"#file26" & } +{ sort <"#file23" >"#file27" & } +{ sort -m "#file26" "#file27" >s2 & } +{ sort <"#file24" >"#file29" & } +{ sort <"#file25" >"#file30" & } +{ sort -m "#file29" "#file30" >s1 & } +{ comm -23 s1 s2 & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (9481) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_0SBlEFy1qD +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_qcMCp9JnH4 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 166905.897 ms +(7) Recovering BaSh variables from: /tmp/pash_qcMCp9JnH4 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_0SBlEFy1qD +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_3zysgtoQLH +(1) Bash variables saved in: /tmp/pash_3zysgtoQLH +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.215 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_3zysgtoQLH +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_nsbmbesl: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_walsHYnL11 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_H8LQJRq7p7 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.774 ms +(7) Recovering BaSh variables from: /tmp/pash_H8LQJRq7p7 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_walsHYnL11 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_gargybef +Preprocessing time: 43.887 ms + +real 2m47.935s +user 5m38.014s +sys 0m5.689s +Files /home/nikos/dish/evaluation//small_intermediary//set-diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..0f9b9715b --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_distr_no_task_par_eager.time @@ -0,0 +1,283 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_QUaaJfO1sv +(1) Bash variables saved in: /tmp/pash_QUaaJfO1sv +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.228 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_QUaaJfO1sv +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_yspsnijk: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_2in4JAzMUH +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_ACDvH1obc0 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.511 ms +(7) Recovering BaSh variables from: /tmp/pash_ACDvH1obc0 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_2in4JAzMUH +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_0LlzB1Gwje +(1) Bash variables saved in: /tmp/pash_0LlzB1Gwje +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 75.769 ms +Total nodes after optimization: 19 + -- out of which: +Cat nodes: 0 +Eager nodes: 6 +Optimization time: 5.398 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file32, #file33], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file34, #file35], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file26, #file32], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file27, #file33], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file29, #file34], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file30, #file35], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:17:s1, #file36], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:18:s2, #file37], []) +arguments, redirs found for: comm +|-- ([#file36, #file37], []) +Backend time: 16.753 ms +Optimized script saved in: /tmp/pash_odeJBlid2x +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_0LlzB1Gwje +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_odeJBlid2x: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file12" +mkfifo "#file14" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +{ cut -d " " -f 1 "#file20" & } +{ cut -d " " -f 1 "#file21" & } +{ cut -d " " -f 1 "#file22" & } +{ cut -d " " -f 1 "#file23" & } +{ tr [:lower] [:upper] <"#file20" >"#file24" & } +{ tr [:lower] [:upper] <"#file21" >"#file25" & } +{ sort <"#file22" >"#file26" & } +{ sort <"#file23" >"#file27" & } +{ sort -m "#file32" "#file33" >s2 & } +{ sort <"#file24" >"#file29" & } +{ sort <"#file25" >"#file30" & } +{ sort -m "#file34" "#file35" >s1 & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file26" "#file32" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file27" "#file33" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file29" "#file34" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file30" "#file35" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s1 "#file36" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s2 "#file37" "/tmp/pash_eager_intermediate_#file6" & } +{ comm -23 "#file36" "#file37" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (10026) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_MlooFu7sxt +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_0LMZBOSVY7 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 98486.655 ms +(7) Recovering BaSh variables from: /tmp/pash_0LMZBOSVY7 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_MlooFu7sxt +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_VH2lgpkmG3 +(1) Bash variables saved in: /tmp/pash_VH2lgpkmG3 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.218 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_VH2lgpkmG3 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_mtkxdilp: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_7u7kVCdH4B +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_TCb6Z6Jvij +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 48.390 ms +(7) Recovering BaSh variables from: /tmp/pash_TCb6Z6Jvij +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_7u7kVCdH4B +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_jpdzckjl +Preprocessing time: 43.926 ms + +real 1m39.523s +user 5m35.683s +sys 0m14.541s +Files /home/nikos/dish/evaluation//small_intermediary//set-diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_seq.time new file mode 100644 index 000000000..08375ca2d --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/set-diff_2_seq.time @@ -0,0 +1,4 @@ + +real 1m18.557s +user 1m19.876s +sys 0m6.813s diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_16_distr_auto_split.time new file mode 100644 index 000000000..9b93cee46 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_16_distr_auto_split.time @@ -0,0 +1,1037 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_j7vutpu2/pash_vIbQ8MKFuZ +(1) Bash variables saved in: /tmp/pash_j7vutpu2/pash_vIbQ8MKFuZ +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_j7vutpu2/tmp51q9klsc ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 66.292 ms +Total nodes after optimization: 142 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 8.796 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file157, #file158], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file143, #file144], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file145, #file146], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file147, #file148], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file149, #file150], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file151, #file152], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file153, #file154], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file155, #file156], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file159, #file160], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file161, #file162], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file163, #file164], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file165, #file166], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file167, #file168], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file169, #file170], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file171, #file172], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file141, #file172], []) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +Backend time: 26.533 ms +Optimized script saved in: /tmp/pash_j7vutpu2/pash_HB65fZUh32 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_j7vutpu2/pash_vIbQ8MKFuZ +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_j7vutpu2/pash_HB65fZUh32: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +{ xargs file "#file32" & } +{ xargs file "#file33" & } +{ xargs file "#file34" & } +{ xargs file "#file35" & } +{ xargs file "#file36" & } +{ xargs file "#file37" & } +{ xargs file "#file38" & } +{ xargs file "#file39" & } +{ xargs file "#file40" & } +{ xargs file "#file41" & } +{ xargs file "#file42" & } +{ xargs file "#file43" & } +{ xargs file "#file44" & } +{ xargs file "#file45" & } +{ xargs file "#file46" & } +{ xargs file "#file47" & } +{ grep "shell script" <"#file32" >"#file48" & } +{ grep "shell script" <"#file33" >"#file49" & } +{ grep "shell script" <"#file34" >"#file50" & } +{ grep "shell script" <"#file35" >"#file51" & } +{ grep "shell script" <"#file36" >"#file52" & } +{ grep "shell script" <"#file37" >"#file53" & } +{ grep "shell script" <"#file38" >"#file54" & } +{ grep "shell script" <"#file39" >"#file55" & } +{ grep "shell script" <"#file40" >"#file56" & } +{ grep "shell script" <"#file41" >"#file57" & } +{ grep "shell script" <"#file42" >"#file58" & } +{ grep "shell script" <"#file43" >"#file59" & } +{ grep "shell script" <"#file44" >"#file60" & } +{ grep "shell script" <"#file45" >"#file61" & } +{ grep "shell script" <"#file46" >"#file62" & } +{ grep "shell script" <"#file47" >"#file63" & } +{ cut -d: -f1 <"#file48" >"#file64" & } +{ cut -d: -f1 <"#file49" >"#file65" & } +{ cut -d: -f1 <"#file50" >"#file66" & } +{ cut -d: -f1 <"#file51" >"#file67" & } +{ cut -d: -f1 <"#file52" >"#file68" & } +{ cut -d: -f1 <"#file53" >"#file69" & } +{ cut -d: -f1 <"#file54" >"#file70" & } +{ cut -d: -f1 <"#file55" >"#file71" & } +{ cut -d: -f1 <"#file56" >"#file72" & } +{ cut -d: -f1 <"#file57" >"#file73" & } +{ cut -d: -f1 <"#file58" >"#file74" & } +{ cut -d: -f1 <"#file59" >"#file75" & } +{ cut -d: -f1 <"#file60" >"#file76" & } +{ cut -d: -f1 <"#file61" >"#file77" & } +{ cut -d: -f1 <"#file62" >"#file78" & } +{ cut -d: -f1 <"#file63" >"#file79" & } +{ xargs -L 1 wc -l <"#file64" >"#file80" & } +{ xargs -L 1 wc -l <"#file65" >"#file81" & } +{ xargs -L 1 wc -l <"#file66" >"#file82" & } +{ xargs -L 1 wc -l <"#file67" >"#file83" & } +{ xargs -L 1 wc -l <"#file68" >"#file84" & } +{ xargs -L 1 wc -l <"#file69" >"#file85" & } +{ xargs -L 1 wc -l <"#file70" >"#file86" & } +{ xargs -L 1 wc -l <"#file71" >"#file87" & } +{ xargs -L 1 wc -l <"#file72" >"#file88" & } +{ xargs -L 1 wc -l <"#file73" >"#file89" & } +{ xargs -L 1 wc -l <"#file74" >"#file90" & } +{ xargs -L 1 wc -l <"#file75" >"#file91" & } +{ xargs -L 1 wc -l <"#file76" >"#file92" & } +{ xargs -L 1 wc -l <"#file77" >"#file93" & } +{ xargs -L 1 wc -l <"#file78" >"#file94" & } +{ xargs -L 1 wc -l <"#file79" >"#file95" & } +{ grep -v "^0$" <"#file80" >"#file96" & } +{ grep -v "^0$" <"#file81" >"#file97" & } +{ grep -v "^0$" <"#file82" >"#file98" & } +{ grep -v "^0$" <"#file83" >"#file99" & } +{ grep -v "^0$" <"#file84" >"#file100" & } +{ grep -v "^0$" <"#file85" >"#file101" & } +{ grep -v "^0$" <"#file86" >"#file102" & } +{ grep -v "^0$" <"#file87" >"#file103" & } +{ grep -v "^0$" <"#file88" >"#file104" & } +{ grep -v "^0$" <"#file89" >"#file105" & } +{ grep -v "^0$" <"#file90" >"#file106" & } +{ grep -v "^0$" <"#file91" >"#file107" & } +{ grep -v "^0$" <"#file92" >"#file108" & } +{ grep -v "^0$" <"#file93" >"#file109" & } +{ grep -v "^0$" <"#file94" >"#file110" & } +{ grep -v "^0$" <"#file95" >"#file111" & } +{ sort -n <"#file96" >"#file112" & } +{ sort -n <"#file97" >"#file113" & } +{ sort -n <"#file98" >"#file114" & } +{ sort -n <"#file99" >"#file115" & } +{ sort -n <"#file100" >"#file116" & } +{ sort -n <"#file101" >"#file117" & } +{ sort -n <"#file102" >"#file118" & } +{ sort -n <"#file103" >"#file119" & } +{ sort -n <"#file104" >"#file120" & } +{ sort -n <"#file105" >"#file121" & } +{ sort -n <"#file106" >"#file122" & } +{ sort -n <"#file107" >"#file123" & } +{ sort -n <"#file108" >"#file124" & } +{ sort -n <"#file109" >"#file125" & } +{ sort -n <"#file110" >"#file126" & } +{ sort -n <"#file111" >"#file127" & } +{ sort -n -m "#file157" "#file158" >"#file128" & } +{ sort -n -m "#file143" "#file144" >"#file129" & } +{ sort -n -m "#file145" "#file146" >"#file130" & } +{ sort -n -m "#file147" "#file148" >"#file131" & } +{ sort -n -m "#file149" "#file150" >"#file132" & } +{ sort -n -m "#file151" "#file152" >"#file133" & } +{ sort -n -m "#file153" "#file154" >"#file134" & } +{ sort -n -m "#file155" "#file156" >"#file135" & } +{ sort -n -m "#file159" "#file160" >"#file136" & } +{ sort -n -m "#file161" "#file162" >"#file137" & } +{ sort -n -m "#file163" "#file164" >"#file138" & } +{ sort -n -m "#file165" "#file166" >"#file139" & } +{ sort -n -m "#file167" "#file168" >"#file140" & } +{ sort -n -m "#file169" "#file170" >"#file141" & } +{ sort -n -m "#file171" "#file172" >"#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file143" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file144" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file145" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file146" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file147" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file148" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file149" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file150" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file151" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file152" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file153" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file154" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file155" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file156" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file157" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file158" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file159" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file160" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file161" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file162" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file163" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file164" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file165" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file166" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file167" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file168" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file169" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file170" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file171" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file141" "#file172" "/tmp/pash_eager_intermediate_#file30" & } +{ head -15 <"#file29" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172"Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_j7vutpu2/pash_2uvbgo5ISr +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_j7vutpu2/pash_1QAreEuhzp +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 412.211 ms +(7) Recovering BaSh variables from: /tmp/pash_j7vutpu2/pash_1QAreEuhzp +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_j7vutpu2/pash_2uvbgo5ISr +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_j7vutpu2/tmpwss346aw +Preprocessing time: 5.024 ms + +real 0m0.749s +user 0m0.859s +sys 0m0.239s +Files /home/ubuntu/pash/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_16_distr_no_eager.time new file mode 100644 index 000000000..3e8c4666e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_16_distr_no_eager.time @@ -0,0 +1,795 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_zOFIrtr8xr +(1) Bash variables saved in: /tmp/pash_zOFIrtr8xr +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 272.995 ms +Total nodes after optimization: 112 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 18.297 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file112, #file113], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file114, #file115], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file116, #file117], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file118, #file119], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file120, #file121], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file122, #file123], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file124, #file125], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file126, #file127], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file128, #file129], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file130, #file131], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file132, #file133], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file134, #file135], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file136, #file137], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file138, #file139], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file140, #file141], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +Backend time: 51.473 ms +Optimized script saved in: /tmp/pash_91Ztnkiglp +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_zOFIrtr8xr +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_91Ztnkiglp: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +{ xargs file "#file32" & } +{ xargs file "#file33" & } +{ xargs file "#file34" & } +{ xargs file "#file35" & } +{ xargs file "#file36" & } +{ xargs file "#file37" & } +{ xargs file "#file38" & } +{ xargs file "#file39" & } +{ xargs file "#file40" & } +{ xargs file "#file41" & } +{ xargs file "#file42" & } +{ xargs file "#file43" & } +{ xargs file "#file44" & } +{ xargs file "#file45" & } +{ xargs file "#file46" & } +{ xargs file "#file47" & } +{ grep "shell script" <"#file32" >"#file48" & } +{ grep "shell script" <"#file33" >"#file49" & } +{ grep "shell script" <"#file34" >"#file50" & } +{ grep "shell script" <"#file35" >"#file51" & } +{ grep "shell script" <"#file36" >"#file52" & } +{ grep "shell script" <"#file37" >"#file53" & } +{ grep "shell script" <"#file38" >"#file54" & } +{ grep "shell script" <"#file39" >"#file55" & } +{ grep "shell script" <"#file40" >"#file56" & } +{ grep "shell script" <"#file41" >"#file57" & } +{ grep "shell script" <"#file42" >"#file58" & } +{ grep "shell script" <"#file43" >"#file59" & } +{ grep "shell script" <"#file44" >"#file60" & } +{ grep "shell script" <"#file45" >"#file61" & } +{ grep "shell script" <"#file46" >"#file62" & } +{ grep "shell script" <"#file47" >"#file63" & } +{ cut -d: -f1 <"#file48" >"#file64" & } +{ cut -d: -f1 <"#file49" >"#file65" & } +{ cut -d: -f1 <"#file50" >"#file66" & } +{ cut -d: -f1 <"#file51" >"#file67" & } +{ cut -d: -f1 <"#file52" >"#file68" & } +{ cut -d: -f1 <"#file53" >"#file69" & } +{ cut -d: -f1 <"#file54" >"#file70" & } +{ cut -d: -f1 <"#file55" >"#file71" & } +{ cut -d: -f1 <"#file56" >"#file72" & } +{ cut -d: -f1 <"#file57" >"#file73" & } +{ cut -d: -f1 <"#file58" >"#file74" & } +{ cut -d: -f1 <"#file59" >"#file75" & } +{ cut -d: -f1 <"#file60" >"#file76" & } +{ cut -d: -f1 <"#file61" >"#file77" & } +{ cut -d: -f1 <"#file62" >"#file78" & } +{ cut -d: -f1 <"#file63" >"#file79" & } +{ xargs -L 1 wc -l <"#file64" >"#file80" & } +{ xargs -L 1 wc -l <"#file65" >"#file81" & } +{ xargs -L 1 wc -l <"#file66" >"#file82" & } +{ xargs -L 1 wc -l <"#file67" >"#file83" & } +{ xargs -L 1 wc -l <"#file68" >"#file84" & } +{ xargs -L 1 wc -l <"#file69" >"#file85" & } +{ xargs -L 1 wc -l <"#file70" >"#file86" & } +{ xargs -L 1 wc -l <"#file71" >"#file87" & } +{ xargs -L 1 wc -l <"#file72" >"#file88" & } +{ xargs -L 1 wc -l <"#file73" >"#file89" & } +{ xargs -L 1 wc -l <"#file74" >"#file90" & } +{ xargs -L 1 wc -l <"#file75" >"#file91" & } +{ xargs -L 1 wc -l <"#file76" >"#file92" & } +{ xargs -L 1 wc -l <"#file77" >"#file93" & } +{ xargs -L 1 wc -l <"#file78" >"#file94" & } +{ xargs -L 1 wc -l <"#file79" >"#file95" & } +{ grep -v "^0$" <"#file80" >"#file96" & } +{ grep -v "^0$" <"#file81" >"#file97" & } +{ grep -v "^0$" <"#file82" >"#file98" & } +{ grep -v "^0$" <"#file83" >"#file99" & } +{ grep -v "^0$" <"#file84" >"#file100" & } +{ grep -v "^0$" <"#file85" >"#file101" & } +{ grep -v "^0$" <"#file86" >"#file102" & } +{ grep -v "^0$" <"#file87" >"#file103" & } +{ grep -v "^0$" <"#file88" >"#file104" & } +{ grep -v "^0$" <"#file89" >"#file105" & } +{ grep -v "^0$" <"#file90" >"#file106" & } +{ grep -v "^0$" <"#file91" >"#file107" & } +{ grep -v "^0$" <"#file92" >"#file108" & } +{ grep -v "^0$" <"#file93" >"#file109" & } +{ grep -v "^0$" <"#file94" >"#file110" & } +{ grep -v "^0$" <"#file95" >"#file111" & } +{ sort -n <"#file96" >"#file112" & } +{ sort -n <"#file97" >"#file113" & } +{ sort -n <"#file98" >"#file114" & } +{ sort -n <"#file99" >"#file115" & } +{ sort -n <"#file100" >"#file116" & } +{ sort -n <"#file101" >"#file117" & } +{ sort -n <"#file102" >"#file118" & } +{ sort -n <"#file103" >"#file119" & } +{ sort -n <"#file104" >"#file120" & } +{ sort -n <"#file105" >"#file121" & } +{ sort -n <"#file106" >"#file122" & } +{ sort -n <"#file107" >"#file123" & } +{ sort -n <"#file108" >"#file124" & } +{ sort -n <"#file109" >"#file125" & } +{ sort -n <"#file110" >"#file126" & } +{ sort -n <"#file111" >"#file127" & } +{ sort -n -m "#file112" "#file113" >"#file128" & } +{ sort -n -m "#file114" "#file115" >"#file129" & } +{ sort -n -m "#file116" "#file117" >"#file130" & } +{ sort -n -m "#file118" "#file119" >"#file131" & } +{ sort -n -m "#file120" "#file121" >"#file132" & } +{ sort -n -m "#file122" "#file123" >"#file133" & } +{ sort -n -m "#file124" "#file125" >"#file134" & } +{ sort -n -m "#file126" "#file127" >"#file135" & } +{ sort -n -m "#file128" "#file129" >"#file136" & } +{ sort -n -m "#file130" "#file131" >"#file137" & } +{ sort -n -m "#file132" "#file133" >"#file138" & } +{ sort -n -m "#file134" "#file135" >"#file139" & } +{ sort -n -m "#file136" "#file137" >"#file140" & } +{ sort -n -m "#file138" "#file139" >"#file141" & } +{ sort -n -m "#file140" "#file141" >"#file29" & } +{ head -15 <"#file29" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (18824) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_IwE6VRRgDf +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_mEp8Kl87Dd +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 14979.752 ms +(7) Recovering BaSh variables from: /tmp/pash_mEp8Kl87Dd +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_IwE6VRRgDf +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_lqdlycwl +Preprocessing time: 28.407 ms + +real 0m15.727s +user 3m21.425s +sys 0m44.359s +Files /home/nikos/dish/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..3b906ecf1 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_16_distr_no_task_par_eager.time @@ -0,0 +1,975 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_EpUcZ8Nmf5 +(1) Bash variables saved in: /tmp/pash_EpUcZ8Nmf5 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 272.452 ms +Total nodes after optimization: 142 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 22.481 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file157, #file158], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file145, #file146], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file143, #file144], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file147, #file148], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file149, #file150], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file151, #file152], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file153, #file154], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file155, #file156], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file161, #file162], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file159, #file160], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file163, #file164], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file165, #file166], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file167, #file168], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file169, #file170], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file171, #file172], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file116, #file143], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file117, #file144], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file114, #file145], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file115, #file146], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file118, #file147], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file119, #file148], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file120, #file149], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file121, #file150], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file122, #file151], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file123, #file152], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file124, #file153], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file125, #file154], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file126, #file155], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file127, #file156], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file112, #file157], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file113, #file158], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file130, #file159], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file131, #file160], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file128, #file161], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file129, #file162], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file132, #file163], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file133, #file164], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file134, #file165], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file135, #file166], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file136, #file167], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file137, #file168], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file138, #file169], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file139, #file170], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file140, #file171], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file141, #file172], []) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +Backend time: 64.036 ms +Optimized script saved in: /tmp/pash_s3DLWxtctb +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_EpUcZ8Nmf5 +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_s3DLWxtctb: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +{ xargs file "#file32" & } +{ xargs file "#file33" & } +{ xargs file "#file34" & } +{ xargs file "#file35" & } +{ xargs file "#file36" & } +{ xargs file "#file37" & } +{ xargs file "#file38" & } +{ xargs file "#file39" & } +{ xargs file "#file40" & } +{ xargs file "#file41" & } +{ xargs file "#file42" & } +{ xargs file "#file43" & } +{ xargs file "#file44" & } +{ xargs file "#file45" & } +{ xargs file "#file46" & } +{ xargs file "#file47" & } +{ grep "shell script" <"#file32" >"#file48" & } +{ grep "shell script" <"#file33" >"#file49" & } +{ grep "shell script" <"#file34" >"#file50" & } +{ grep "shell script" <"#file35" >"#file51" & } +{ grep "shell script" <"#file36" >"#file52" & } +{ grep "shell script" <"#file37" >"#file53" & } +{ grep "shell script" <"#file38" >"#file54" & } +{ grep "shell script" <"#file39" >"#file55" & } +{ grep "shell script" <"#file40" >"#file56" & } +{ grep "shell script" <"#file41" >"#file57" & } +{ grep "shell script" <"#file42" >"#file58" & } +{ grep "shell script" <"#file43" >"#file59" & } +{ grep "shell script" <"#file44" >"#file60" & } +{ grep "shell script" <"#file45" >"#file61" & } +{ grep "shell script" <"#file46" >"#file62" & } +{ grep "shell script" <"#file47" >"#file63" & } +{ cut -d: -f1 <"#file48" >"#file64" & } +{ cut -d: -f1 <"#file49" >"#file65" & } +{ cut -d: -f1 <"#file50" >"#file66" & } +{ cut -d: -f1 <"#file51" >"#file67" & } +{ cut -d: -f1 <"#file52" >"#file68" & } +{ cut -d: -f1 <"#file53" >"#file69" & } +{ cut -d: -f1 <"#file54" >"#file70" & } +{ cut -d: -f1 <"#file55" >"#file71" & } +{ cut -d: -f1 <"#file56" >"#file72" & } +{ cut -d: -f1 <"#file57" >"#file73" & } +{ cut -d: -f1 <"#file58" >"#file74" & } +{ cut -d: -f1 <"#file59" >"#file75" & } +{ cut -d: -f1 <"#file60" >"#file76" & } +{ cut -d: -f1 <"#file61" >"#file77" & } +{ cut -d: -f1 <"#file62" >"#file78" & } +{ cut -d: -f1 <"#file63" >"#file79" & } +{ xargs -L 1 wc -l <"#file64" >"#file80" & } +{ xargs -L 1 wc -l <"#file65" >"#file81" & } +{ xargs -L 1 wc -l <"#file66" >"#file82" & } +{ xargs -L 1 wc -l <"#file67" >"#file83" & } +{ xargs -L 1 wc -l <"#file68" >"#file84" & } +{ xargs -L 1 wc -l <"#file69" >"#file85" & } +{ xargs -L 1 wc -l <"#file70" >"#file86" & } +{ xargs -L 1 wc -l <"#file71" >"#file87" & } +{ xargs -L 1 wc -l <"#file72" >"#file88" & } +{ xargs -L 1 wc -l <"#file73" >"#file89" & } +{ xargs -L 1 wc -l <"#file74" >"#file90" & } +{ xargs -L 1 wc -l <"#file75" >"#file91" & } +{ xargs -L 1 wc -l <"#file76" >"#file92" & } +{ xargs -L 1 wc -l <"#file77" >"#file93" & } +{ xargs -L 1 wc -l <"#file78" >"#file94" & } +{ xargs -L 1 wc -l <"#file79" >"#file95" & } +{ grep -v "^0$" <"#file80" >"#file96" & } +{ grep -v "^0$" <"#file81" >"#file97" & } +{ grep -v "^0$" <"#file82" >"#file98" & } +{ grep -v "^0$" <"#file83" >"#file99" & } +{ grep -v "^0$" <"#file84" >"#file100" & } +{ grep -v "^0$" <"#file85" >"#file101" & } +{ grep -v "^0$" <"#file86" >"#file102" & } +{ grep -v "^0$" <"#file87" >"#file103" & } +{ grep -v "^0$" <"#file88" >"#file104" & } +{ grep -v "^0$" <"#file89" >"#file105" & } +{ grep -v "^0$" <"#file90" >"#file106" & } +{ grep -v "^0$" <"#file91" >"#file107" & } +{ grep -v "^0$" <"#file92" >"#file108" & } +{ grep -v "^0$" <"#file93" >"#file109" & } +{ grep -v "^0$" <"#file94" >"#file110" & } +{ grep -v "^0$" <"#file95" >"#file111" & } +{ sort -n <"#file96" >"#file112" & } +{ sort -n <"#file97" >"#file113" & } +{ sort -n <"#file98" >"#file114" & } +{ sort -n <"#file99" >"#file115" & } +{ sort -n <"#file100" >"#file116" & } +{ sort -n <"#file101" >"#file117" & } +{ sort -n <"#file102" >"#file118" & } +{ sort -n <"#file103" >"#file119" & } +{ sort -n <"#file104" >"#file120" & } +{ sort -n <"#file105" >"#file121" & } +{ sort -n <"#file106" >"#file122" & } +{ sort -n <"#file107" >"#file123" & } +{ sort -n <"#file108" >"#file124" & } +{ sort -n <"#file109" >"#file125" & } +{ sort -n <"#file110" >"#file126" & } +{ sort -n <"#file111" >"#file127" & } +{ sort -n -m "#file157" "#file158" >"#file128" & } +{ sort -n -m "#file145" "#file146" >"#file129" & } +{ sort -n -m "#file143" "#file144" >"#file130" & } +{ sort -n -m "#file147" "#file148" >"#file131" & } +{ sort -n -m "#file149" "#file150" >"#file132" & } +{ sort -n -m "#file151" "#file152" >"#file133" & } +{ sort -n -m "#file153" "#file154" >"#file134" & } +{ sort -n -m "#file155" "#file156" >"#file135" & } +{ sort -n -m "#file161" "#file162" >"#file136" & } +{ sort -n -m "#file159" "#file160" >"#file137" & } +{ sort -n -m "#file163" "#file164" >"#file138" & } +{ sort -n -m "#file165" "#file166" >"#file139" & } +{ sort -n -m "#file167" "#file168" >"#file140" & } +{ sort -n -m "#file169" "#file170" >"#file141" & } +{ sort -n -m "#file171" "#file172" >"#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file116" "#file143" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file117" "#file144" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file114" "#file145" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file115" "#file146" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file118" "#file147" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file119" "#file148" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file120" "#file149" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file121" "#file150" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file122" "#file151" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file123" "#file152" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file124" "#file153" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file125" "#file154" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file126" "#file155" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file127" "#file156" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file112" "#file157" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file113" "#file158" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file130" "#file159" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file131" "#file160" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file128" "#file161" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file129" "#file162" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file132" "#file163" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file133" "#file164" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file134" "#file165" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file135" "#file166" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file136" "#file167" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file137" "#file168" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file138" "#file169" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file139" "#file170" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file140" "#file171" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file141" "#file172" "/tmp/pash_eager_intermediate_#file30" & } +{ head -15 <"#file29" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (45429) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_rF1uK4GkyG +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_IQOmxL89tR +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 15447.115 ms +(7) Recovering BaSh variables from: /tmp/pash_IQOmxL89tR +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_rF1uK4GkyG +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_iuxuiiiu +Preprocessing time: 28.06 ms + +real 0m16.211s +user 3m25.127s +sys 0m45.735s +Files /home/nikos/dish/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_distr_auto_split.time new file mode 100644 index 000000000..8da092fd1 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_distr_auto_split.time @@ -0,0 +1,197 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_t2b1p52g/pash_ebdnmbtpVw +(1) Bash variables saved in: /tmp/pash_t2b1p52g/pash_ebdnmbtpVw +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_t2b1p52g/tmpy5rb2vlu ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 9.015 ms +Total nodes after optimization: 16 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 2.215 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file31, #file32], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file31], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file32], []) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +Backend time: 3.372 ms +Optimized script saved in: /tmp/pash_t2b1p52g/pash_GIEbFWberb +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_t2b1p52g/pash_ebdnmbtpVw +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_t2b1p52g/pash_GIEbFWberb: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +{ xargs file "#file18" & } +{ xargs file "#file19" & } +{ grep "shell script" <"#file18" >"#file20" & } +{ grep "shell script" <"#file19" >"#file21" & } +{ cut -d: -f1 <"#file20" >"#file22" & } +{ cut -d: -f1 <"#file21" >"#file23" & } +{ xargs -L 1 wc -l <"#file22" >"#file24" & } +{ xargs -L 1 wc -l <"#file23" >"#file25" & } +{ grep -v "^0$" <"#file24" >"#file26" & } +{ grep -v "^0$" <"#file25" >"#file27" & } +{ sort -n <"#file26" >"#file28" & } +{ sort -n <"#file27" >"#file29" & } +{ sort -n -m "#file31" "#file32" >"#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file31" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file32" "/tmp/pash_eager_intermediate_#file2" & } +{ head -15 <"#file15" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32"Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_t2b1p52g/pash_q9YHq14wZr +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_t2b1p52g/pash_gN9H0Le4WZ +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 82.207 ms +(7) Recovering BaSh variables from: /tmp/pash_t2b1p52g/pash_gN9H0Le4WZ +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_t2b1p52g/pash_q9YHq14wZr +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_t2b1p52g/tmp_spd0_ge +Preprocessing time: 4.915 ms + +real 0m0.328s +user 0m0.347s +sys 0m0.059s +Files /home/ubuntu/pash/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_distr_no_eager.time new file mode 100644 index 000000000..1d0e5b425 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_distr_no_eager.time @@ -0,0 +1,179 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_f0yuMjuXDe +(1) Bash variables saved in: /tmp/pash_f0yuMjuXDe +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 37.459 ms +Total nodes after optimization: 14 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 3.957 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file28, #file29], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +Backend time: 12.097 ms +Optimized script saved in: /tmp/pash_46mgEqaUnr +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_f0yuMjuXDe +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_46mgEqaUnr: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +{ xargs file "#file18" & } +{ xargs file "#file19" & } +{ grep "shell script" <"#file18" >"#file20" & } +{ grep "shell script" <"#file19" >"#file21" & } +{ cut -d: -f1 <"#file20" >"#file22" & } +{ cut -d: -f1 <"#file21" >"#file23" & } +{ xargs -L 1 wc -l <"#file22" >"#file24" & } +{ xargs -L 1 wc -l <"#file23" >"#file25" & } +{ grep -v "^0$" <"#file24" >"#file26" & } +{ grep -v "^0$" <"#file25" >"#file27" & } +{ sort -n <"#file26" >"#file28" & } +{ sort -n <"#file27" >"#file29" & } +{ sort -n -m "#file28" "#file29" >"#file15" & } +{ head -15 <"#file15" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (70410) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_ikB9W5XsTE +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_gffFZxLoVG +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 87225.467 ms +(7) Recovering BaSh variables from: /tmp/pash_gffFZxLoVG +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_ikB9W5XsTE +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_uupovfjl +Preprocessing time: 26.939 ms + +real 1m27.675s +user 2m48.356s +sys 0m41.736s +Files /home/nikos/dish/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..91717d04d --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_distr_no_task_par_eager.time @@ -0,0 +1,191 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_6pEmVfUYst +(1) Bash variables saved in: /tmp/pash_6pEmVfUYst +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 37.099 ms +Total nodes after optimization: 16 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 4.354 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file31, #file32], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file28, #file31], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file29, #file32], []) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +Backend time: 14.146 ms +Optimized script saved in: /tmp/pash_czBliuyqVK +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_6pEmVfUYst +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_czBliuyqVK: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +{ xargs file "#file18" & } +{ xargs file "#file19" & } +{ grep "shell script" <"#file18" >"#file20" & } +{ grep "shell script" <"#file19" >"#file21" & } +{ cut -d: -f1 <"#file20" >"#file22" & } +{ cut -d: -f1 <"#file21" >"#file23" & } +{ xargs -L 1 wc -l <"#file22" >"#file24" & } +{ xargs -L 1 wc -l <"#file23" >"#file25" & } +{ grep -v "^0$" <"#file24" >"#file26" & } +{ grep -v "^0$" <"#file25" >"#file27" & } +{ sort -n <"#file26" >"#file28" & } +{ sort -n <"#file27" >"#file29" & } +{ sort -n -m "#file31" "#file32" >"#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file28" "#file31" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file29" "#file32" "/tmp/pash_eager_intermediate_#file2" & } +{ head -15 <"#file15" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (96494) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_beq298VeSD +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pXIFdbjFln +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 88456.218 ms +(7) Recovering BaSh variables from: /tmp/pash_pXIFdbjFln +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_beq298VeSD +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_deuqgcxs +Preprocessing time: 28.326 ms + +real 1m28.911s +user 2m53.532s +sys 0m41.920s +Files /home/nikos/dish/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_seq.time new file mode 100644 index 000000000..5485129b4 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/shortest_scripts_2_seq.time @@ -0,0 +1,8 @@ +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] + +real 0m0.016s +user 0m0.007s +sys 0m0.005s diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_16_distr.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_16_distr.time new file mode 100644 index 000000000..984ecbb0e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_16_distr.time @@ -0,0 +1,328 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_5k3dfwka3N +(1) Bash variables saved in: /tmp/pash_5k3dfwka3N +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: col +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: col +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Argument: [['V', ['Normal', False, 'dict', []]]] was expanded to: /home/nikos/dish/evaluation/scripts/input/sorted_words +inputs-outputs found for: comm +|-- (['stdin', ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 289.431 ms +Total nodes after optimization: 40 + -- out of which: +Cat nodes: 1 +Eager nodes: 17 +Optimization time: 6.166 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: cat +|-- ([#file49, #file50, #file51, #file52, #file53, #file54, #file55, #file56, #file57, #file58, #file59, #file60, #file61, #file62, #file63, #file64], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file33, #file49], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file34, #file50], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file35, #file51], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file36, #file52], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file37, #file53], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file38, #file54], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file39, #file55], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file40, #file56], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file41, #file57], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file42, #file58], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file43, #file59], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file44, #file60], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file45, #file61], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file46, #file62], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file47, #file63], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file48, #file64], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file29, #file65], []) +arguments, redirs found for: comm +|-- ([#file65, fid:31:/home/nikos/dish/evaluation/scripts/input/sorted_words], []) +Backend time: 27.912 ms +Optimized script saved in: /tmp/pash_lcfNOXWgWU +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_5k3dfwka3N +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_lcfNOXWgWU: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +{ tr -cs A-Za-z "\\n" <"#file19" >"#file21" & } +{ tr A-Z a-z <"#file21" >"#file23" & } +{ tr -d "[:punct:]" <"#file23" >"#file25" & } +{ sort <"#file25" >"#file27" & } +{ uniq <"#file27" >"#file29" & } +{ col -bx "#file33" & } +{ col -bx "#file34" & } +{ col -bx "#file35" & } +{ col -bx "#file36" & } +{ col -bx "#file37" & } +{ col -bx "#file38" & } +{ col -bx "#file39" & } +{ col -bx "#file40" & } +{ col -bx "#file41" & } +{ col -bx "#file42" & } +{ col -bx "#file43" & } +{ col -bx "#file44" & } +{ col -bx "#file45" & } +{ col -bx "#file46" & } +{ col -bx "#file47" & } +{ col -bx "#file48" & } +{ cat "#file49" "#file50" "#file51" "#file52" "#file53" "#file54" "#file55" "#file56" "#file57" "#file58" "#file59" "#file60" "#file61" "#file62" "#file63" "#file64" >"#file19" & } +{ /home/nikos/dish/runtime/eager.sh "#file33" "#file49" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager.sh "#file34" "#file50" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager.sh "#file35" "#file51" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager.sh "#file36" "#file52" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager.sh "#file37" "#file53" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager.sh "#file38" "#file54" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager.sh "#file39" "#file55" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager.sh "#file40" "#file56" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager.sh "#file41" "#file57" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager.sh "#file42" "#file58" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager.sh "#file43" "#file59" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager.sh "#file44" "#file60" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager.sh "#file45" "#file61" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager.sh "#file46" "#file62" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager.sh "#file47" "#file63" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager.sh "#file48" "#file64" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager.sh "#file29" "#file65" "/tmp/pash_eager_intermediate_#file17" & } +{ comm -23 "#file65" /home/nikos/dish/evaluation/scripts/input/sorted_words & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (128456) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_NVJPAWIBtq +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_oXtL42I5tV +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 41591.871 ms +(7) Recovering BaSh variables from: /tmp/pash_oXtL42I5tV +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_NVJPAWIBtq +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_ogftzsdo +Preprocessing time: 27.065 ms + +real 0m42.318s +user 0m51.376s +sys 0m23.440s +Files /home/nikos/dish/evaluation//small_intermediary//spell_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_16_distr_auto_split.time new file mode 100644 index 000000000..7409a2da2 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_16_distr_auto_split.time @@ -0,0 +1,1364 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_7k3j46ow/pash_47RDK9HY0t +(1) Bash variables saved in: /tmp/pash_7k3j46ow/pash_47RDK9HY0t +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_7k3j46ow/tmp5uqx7d9b ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: col +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: col +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Argument: [['V', ['Normal', False, 'dict', []]]] was expanded to: /home/ubuntu/pash/evaluation/scripts/input/sorted_words +inputs-outputs found for: comm +|-- (['stdin', ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 71.417 ms +Total nodes after optimization: 195 + -- out of which: +Cat nodes: 2 +Eager nodes: 93 +Optimization time: 8.523 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: cat +|-- ([#file164, #file165, #file166, #file167, #file168, #file169, #file170, #file171, #file172, #file173, #file174, #file175, #file176, #file177, #file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file21, #file49, #file50, #file51, #file52, #file53, #file54, #file55, #file56, #file57, #file58, #file59, #file60, #file61, #file62, #file63, #file64], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file195, #file196], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file197, #file198], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file199, #file200], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file201, #file202], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file203, #file204], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file205, #file206], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file207, #file208], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file209, #file210], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file211, #file212], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file213, #file214], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file215, #file216], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file217, #file218], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file219, #file220], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file221, #file222], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file223, #file224], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file27, #file129, #file130, #file131, #file132, #file133, #file134, #file135, #file136, #file137, #file138, #file139, #file140, #file141, #file142, #file143, #file144], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: cat +|-- ([#file240, #file241, #file242, #file243, #file244, #file245, #file246, #file247, #file248, #file249, #file250, #file251, #file252, #file253, #file254, #file255], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file37, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file45, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file46, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file47, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file48, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file49, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file50, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file51, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file52, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file53, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file54, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file55, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file56, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file57, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file58, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file59, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file60, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file61, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file62, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file201], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file202], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file203], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file204], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file205], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file206], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file207], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file208], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file209], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file210], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file211], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file212], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file213], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file214], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file215], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file216], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file217], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file218], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file219], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file220], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file221], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file222], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file223], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file224], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file225], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file226], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file227], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file228], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file229], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file230], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file231], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file232], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file233], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file234], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file235], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file236], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file141, #file237], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file142, #file238], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file143, #file239], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file146, #file240], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file147, #file241], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file148, #file242], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file149, #file243], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file150, #file244], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file151, #file245], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file152, #file246], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file153, #file247], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file154, #file248], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file155, #file249], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file156, #file250], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file157, #file251], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file158, #file252], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file159, #file253], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file160, #file254], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file161, #file255], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file256], []) +arguments, redirs found for: comm +|-- ([#file256, fid:31:/home/ubuntu/pash/evaluation/scripts/input/sorted_words], []) +Backend time: 49.557 ms +Optimized script saved in: /tmp/pash_7k3j46ow/pash_xlGaBbAKsU +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_7k3j46ow/pash_47RDK9HY0t +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_7k3j46ow/pash_xlGaBbAKsU: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +rm -f "#file232" +rm -f "#file233" +rm -f "#file234" +rm -f "#file235" +rm -f "#file236" +rm -f "#file237" +rm -f "#file238" +rm -f "#file239" +rm -f "#file240" +rm -f "#file241" +rm -f "#file242" +rm -f "#file243" +rm -f "#file244" +rm -f "#file245" +rm -f "#file246" +rm -f "#file247" +rm -f "#file248" +rm -f "#file249" +rm -f "#file250" +rm -f "#file251" +rm -f "#file252" +rm -f "#file253" +rm -f "#file254" +rm -f "#file255" +rm -f "#file256" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +mkfifo "#file220" +mkfifo "#file221" +mkfifo "#file222" +mkfifo "#file223" +mkfifo "#file224" +mkfifo "#file225" +mkfifo "#file226" +mkfifo "#file227" +mkfifo "#file228" +mkfifo "#file229" +mkfifo "#file230" +mkfifo "#file231" +mkfifo "#file232" +mkfifo "#file233" +mkfifo "#file234" +mkfifo "#file235" +mkfifo "#file236" +mkfifo "#file237" +mkfifo "#file238" +mkfifo "#file239" +mkfifo "#file240" +mkfifo "#file241" +mkfifo "#file242" +mkfifo "#file243" +mkfifo "#file244" +mkfifo "#file245" +mkfifo "#file246" +mkfifo "#file247" +mkfifo "#file248" +mkfifo "#file249" +mkfifo "#file250" +mkfifo "#file251" +mkfifo "#file252" +mkfifo "#file253" +mkfifo "#file254" +mkfifo "#file255" +mkfifo "#file256" +{ tr -cs A-Za-z "\\n" <"#file19" >"#file21" & } +{ col -bx "#file33" & } +{ col -bx "#file34" & } +{ col -bx "#file35" & } +{ col -bx "#file36" & } +{ col -bx "#file37" & } +{ col -bx "#file38" & } +{ col -bx "#file39" & } +{ col -bx "#file40" & } +{ col -bx "#file41" & } +{ col -bx "#file42" & } +{ col -bx "#file43" & } +{ col -bx "#file44" & } +{ col -bx "#file45" & } +{ col -bx "#file46" & } +{ col -bx "#file47" & } +{ col -bx "#file48" & } +{ cat "#file164" "#file165" "#file166" "#file167" "#file168" "#file169" "#file170" "#file171" "#file172" "#file173" "#file174" "#file175" "#file176" "#file177" "#file178" "#file179" >"#file19" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file21" "#file49" "#file50" "#file51" "#file52" "#file53" "#file54" "#file55" "#file56" "#file57" "#file58" "#file59" "#file60" "#file61" "#file62" "#file63" "#file64" & } +{ tr A-Z a-z <"#file180" >"#file66" & } +{ tr A-Z a-z <"#file181" >"#file67" & } +{ tr A-Z a-z <"#file182" >"#file68" & } +{ tr A-Z a-z <"#file183" >"#file69" & } +{ tr A-Z a-z <"#file184" >"#file70" & } +{ tr A-Z a-z <"#file185" >"#file71" & } +{ tr A-Z a-z <"#file186" >"#file72" & } +{ tr A-Z a-z <"#file187" >"#file73" & } +{ tr A-Z a-z <"#file188" >"#file74" & } +{ tr A-Z a-z <"#file189" >"#file75" & } +{ tr A-Z a-z <"#file190" >"#file76" & } +{ tr A-Z a-z <"#file191" >"#file77" & } +{ tr A-Z a-z <"#file192" >"#file78" & } +{ tr A-Z a-z <"#file193" >"#file79" & } +{ tr A-Z a-z <"#file194" >"#file80" & } +{ tr A-Z a-z <"#file64" >"#file81" & } +{ tr -d "[:punct:]" <"#file66" >"#file82" & } +{ tr -d "[:punct:]" <"#file67" >"#file83" & } +{ tr -d "[:punct:]" <"#file68" >"#file84" & } +{ tr -d "[:punct:]" <"#file69" >"#file85" & } +{ tr -d "[:punct:]" <"#file70" >"#file86" & } +{ tr -d "[:punct:]" <"#file71" >"#file87" & } +{ tr -d "[:punct:]" <"#file72" >"#file88" & } +{ tr -d "[:punct:]" <"#file73" >"#file89" & } +{ tr -d "[:punct:]" <"#file74" >"#file90" & } +{ tr -d "[:punct:]" <"#file75" >"#file91" & } +{ tr -d "[:punct:]" <"#file76" >"#file92" & } +{ tr -d "[:punct:]" <"#file77" >"#file93" & } +{ tr -d "[:punct:]" <"#file78" >"#file94" & } +{ tr -d "[:punct:]" <"#file79" >"#file95" & } +{ tr -d "[:punct:]" <"#file80" >"#file96" & } +{ tr -d "[:punct:]" <"#file81" >"#file97" & } +{ sort <"#file82" >"#file98" & } +{ sort <"#file83" >"#file99" & } +{ sort <"#file84" >"#file100" & } +{ sort <"#file85" >"#file101" & } +{ sort <"#file86" >"#file102" & } +{ sort <"#file87" >"#file103" & } +{ sort <"#file88" >"#file104" & } +{ sort <"#file89" >"#file105" & } +{ sort <"#file90" >"#file106" & } +{ sort <"#file91" >"#file107" & } +{ sort <"#file92" >"#file108" & } +{ sort <"#file93" >"#file109" & } +{ sort <"#file94" >"#file110" & } +{ sort <"#file95" >"#file111" & } +{ sort <"#file96" >"#file112" & } +{ sort <"#file97" >"#file113" & } +{ sort -m "#file195" "#file196" >"#file114" & } +{ sort -m "#file197" "#file198" >"#file115" & } +{ sort -m "#file199" "#file200" >"#file116" & } +{ sort -m "#file201" "#file202" >"#file117" & } +{ sort -m "#file203" "#file204" >"#file118" & } +{ sort -m "#file205" "#file206" >"#file119" & } +{ sort -m "#file207" "#file208" >"#file120" & } +{ sort -m "#file209" "#file210" >"#file121" & } +{ sort -m "#file211" "#file212" >"#file122" & } +{ sort -m "#file213" "#file214" >"#file123" & } +{ sort -m "#file215" "#file216" >"#file124" & } +{ sort -m "#file217" "#file218" >"#file125" & } +{ sort -m "#file219" "#file220" >"#file126" & } +{ sort -m "#file221" "#file222" >"#file127" & } +{ sort -m "#file223" "#file224" >"#file27" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file27" "#file129" "#file130" "#file131" "#file132" "#file133" "#file134" "#file135" "#file136" "#file137" "#file138" "#file139" "#file140" "#file141" "#file142" "#file143" "#file144" & } +{ uniq <"#file225" >"#file146" & } +{ uniq <"#file226" >"#file147" & } +{ uniq <"#file227" >"#file148" & } +{ uniq <"#file228" >"#file149" & } +{ uniq <"#file229" >"#file150" & } +{ uniq <"#file230" >"#file151" & } +{ uniq <"#file231" >"#file152" & } +{ uniq <"#file232" >"#file153" & } +{ uniq <"#file233" >"#file154" & } +{ uniq <"#file234" >"#file155" & } +{ uniq <"#file235" >"#file156" & } +{ uniq <"#file236" >"#file157" & } +{ uniq <"#file237" >"#file158" & } +{ uniq <"#file238" >"#file159" & } +{ uniq <"#file239" >"#file160" & } +{ uniq <"#file144" >"#file161" & } +{ cat "#file240" "#file241" "#file242" "#file243" "#file244" "#file245" "#file246" "#file247" "#file248" "#file249" "#file250" "#file251" "#file252" "#file253" "#file254" "#file255" >"#file162" & } +{ uniq <"#file162" >"#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file164" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file165" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file166" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file167" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file37" "#file168" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file169" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file170" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file171" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file172" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file173" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file174" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file175" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file45" "#file176" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file46" "#file177" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file47" "#file178" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file48" "#file179" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file49" "#file180" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file50" "#file181" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file51" "#file182" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file52" "#file183" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file53" "#file184" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file54" "#file185" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file55" "#file186" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file56" "#file187" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file57" "#file188" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file58" "#file189" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file59" "#file190" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file60" "#file191" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file61" "#file192" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file62" "#file193" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file194" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file195" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file196" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file197" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file198" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file199" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file200" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file201" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file202" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file203" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file204" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file205" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file206" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file207" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file208" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file209" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file210" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file211" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file212" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file213" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file214" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file215" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file216" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file217" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file218" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file219" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file220" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file221" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file222" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file223" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file224" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file225" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file226" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file227" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file228" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file229" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file230" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file231" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file232" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file233" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file234" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file235" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file236" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file141" "#file237" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file142" "#file238" "/tmp/pash_eager_intermediate_#file75" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file143" "#file239" "/tmp/pash_eager_intermediate_#file76" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file146" "#file240" "/tmp/pash_eager_intermediate_#file77" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file147" "#file241" "/tmp/pash_eager_intermediate_#file78" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file148" "#file242" "/tmp/pash_eager_intermediate_#file79" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file149" "#file243" "/tmp/pash_eager_intermediate_#file80" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file150" "#file244" "/tmp/pash_eager_intermediate_#file81" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file151" "#file245" "/tmp/pash_eager_intermediate_#file82" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file152" "#file246" "/tmp/pash_eager_intermediate_#file83" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file153" "#file247" "/tmp/pash_eager_intermediate_#file84" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file154" "#file248" "/tmp/pash_eager_intermediate_#file85" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file155" "#file249" "/tmp/pash_eager_intermediate_#file86" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file156" "#file250" "/tmp/pash_eager_intermediate_#file87" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file157" "#file251" "/tmp/pash_eager_intermediate_#file88" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file158" "#file252" "/tmp/pash_eager_intermediate_#file89" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file159" "#file253" "/tmp/pash_eager_intermediate_#file90" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file160" "#file254" "/tmp/pash_eager_intermediate_#file91" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file161" "#file255" "/tmp/pash_eager_intermediate_#file92" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file256" "/tmp/pash_eager_intermediate_#file93" & } +{ comm -23 "#file256" /home/ubuntu/pash/evaluation/scripts/input/sorted_words & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +rm -f "#file232" +rm -f "#file233" +rm -f "#file234" +rm -f "#file235" +rm -f "#file236" +rm -f "#file237" +rm -f "#file238" +rm -f "#file239" +rm -f "#file240" +rm -f "#file241" +rm -f "#file242" +rm -f "#file243" +rm -f "#file244" +rm -f "#file245" +rm -f "#file246" +rm -f "#file247" +rm -f "#file248" +rm -f "#file249" +rm -f "#file250" +rm -f "#file251" +rm -f "#file252" +rm -f "#file253" +rm -f "#file254" +rm -f "#file255" +rm -f "#file256"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_7k3j46ow/pash_JGpgCdri1Q +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_7k3j46ow/pash_6VsluqIfns +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 11785.406 ms +(7) Recovering BaSh variables from: /tmp/pash_7k3j46ow/pash_6VsluqIfns +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_7k3j46ow/pash_JGpgCdri1Q +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_7k3j46ow/tmpe42t95nt +Preprocessing time: 5.04 ms + +real 0m12.150s +user 0m49.385s +sys 0m25.010s +Files /home/ubuntu/pash/evaluation//small_intermediary//spell_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_2_distr.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_2_distr.time new file mode 100644 index 000000000..fe5460b32 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_2_distr.time @@ -0,0 +1,146 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ZkgNbjKUH3 +(1) Bash variables saved in: /tmp/pash_ZkgNbjKUH3 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: col +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: col +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Argument: [['V', ['Normal', False, 'dict', []]]] was expanded to: /home/nikos/dish/evaluation/scripts/input/sorted_words +inputs-outputs found for: comm +|-- (['stdin', ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 52.887 ms +Total nodes after optimization: 12 + -- out of which: +Cat nodes: 1 +Eager nodes: 3 +Optimization time: 1.381 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: cat +|-- ([#file21, #file22], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file19, #file21], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file20, #file22], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file15, #file23], []) +arguments, redirs found for: comm +|-- ([#file23, fid:17:/home/nikos/dish/evaluation/scripts/input/sorted_words], []) +Backend time: 13.311 ms +Optimized script saved in: /tmp/pash_8V3ieKbmMd +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_ZkgNbjKUH3 +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_8V3ieKbmMd: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +{ tr -cs A-Za-z "\\n" <"#file5" >"#file7" & } +{ tr A-Z a-z <"#file7" >"#file9" & } +{ tr -d "[:punct:]" <"#file9" >"#file11" & } +{ sort <"#file11" >"#file13" & } +{ uniq <"#file13" >"#file15" & } +{ col -bx "#file19" & } +{ col -bx "#file20" & } +{ cat "#file21" "#file22" >"#file5" & } +{ /home/nikos/dish/runtime/eager.sh "#file19" "#file21" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager.sh "#file20" "#file22" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager.sh "#file15" "#file23" "/tmp/pash_eager_intermediate_#file3" & } +{ comm -23 "#file23" /home/nikos/dish/evaluation/scripts/input/sorted_words & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (127799) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_oX9bAflqf8 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_KmMtwQypjo +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 40319.242 ms +(7) Recovering BaSh variables from: /tmp/pash_KmMtwQypjo +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_oX9bAflqf8 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_gsxqpsqw +Preprocessing time: 26.982 ms + +real 0m40.791s +user 0m50.034s +sys 0m18.641s +Files /home/nikos/dish/evaluation//small_intermediary//spell_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_2_distr_auto_split.time new file mode 100644 index 000000000..bb8a404d2 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_2_distr_auto_split.time @@ -0,0 +1,258 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_rqaxefev/pash_I3u7l5aFmf +(1) Bash variables saved in: /tmp/pash_rqaxefev/pash_I3u7l5aFmf +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_rqaxefev/tmpxqpp9h3d ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: col +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: col +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Argument: [['V', ['Normal', False, 'dict', []]]] was expanded to: /home/ubuntu/pash/evaluation/scripts/input/sorted_words +inputs-outputs found for: comm +|-- (['stdin', ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 14.203 ms +Total nodes after optimization: 27 + -- out of which: +Cat nodes: 2 +Eager nodes: 9 +Optimization time: 1.509 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: cat +|-- ([#file38, #file39], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file7, #file21, #file22], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file41, #file42], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file13, #file31, #file32], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: cat +|-- ([#file44, #file45], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file19, #file38], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file20, #file39], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file21, #file40], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file41], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file42], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file31, #file43], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file44], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file45], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file15, #file46], []) +arguments, redirs found for: comm +|-- ([#file46, fid:17:/home/ubuntu/pash/evaluation/scripts/input/sorted_words], []) +Backend time: 5.791 ms +Optimized script saved in: /tmp/pash_rqaxefev/pash_7MmjSb1bRy +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_rqaxefev/pash_I3u7l5aFmf +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_rqaxefev/pash_7MmjSb1bRy: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +{ tr -cs A-Za-z "\\n" <"#file5" >"#file7" & } +{ col -bx "#file19" & } +{ col -bx "#file20" & } +{ cat "#file38" "#file39" >"#file5" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file7" "#file21" "#file22" & } +{ tr A-Z a-z <"#file40" >"#file24" & } +{ tr A-Z a-z <"#file22" >"#file25" & } +{ tr -d "[:punct:]" <"#file24" >"#file26" & } +{ tr -d "[:punct:]" <"#file25" >"#file27" & } +{ sort <"#file26" >"#file28" & } +{ sort <"#file27" >"#file29" & } +{ sort -m "#file41" "#file42" >"#file13" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file13" "#file31" "#file32" & } +{ uniq <"#file43" >"#file34" & } +{ uniq <"#file32" >"#file35" & } +{ cat "#file44" "#file45" >"#file36" & } +{ uniq <"#file36" >"#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file19" "#file38" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file20" "#file39" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file21" "#file40" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file41" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file42" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file31" "#file43" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file44" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file45" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file15" "#file46" "/tmp/pash_eager_intermediate_#file9" & } +{ comm -23 "#file46" /home/ubuntu/pash/evaluation/scripts/input/sorted_words & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_rqaxefev/pash_7wvSzZUCvp +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_rqaxefev/pash_YEe5wen3nW +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 15890.029 ms +(7) Recovering BaSh variables from: /tmp/pash_rqaxefev/pash_YEe5wen3nW +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_rqaxefev/pash_7wvSzZUCvp +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_rqaxefev/tmp0vrx_6ar +Preprocessing time: 4.817 ms + +real 0m16.142s +user 0m28.410s +sys 0m15.824s +Files /home/ubuntu/pash/evaluation//small_intermediary//spell_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_2_seq.time new file mode 100644 index 000000000..52208fba3 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/spell_2_seq.time @@ -0,0 +1,4 @@ + +real 0m21.709s +user 0m24.018s +sys 0m8.765s diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_16_distr_auto_split.time new file mode 100644 index 000000000..f6476afea --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_16_distr_auto_split.time @@ -0,0 +1,1229 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_4r0oepfa/pash_ZgUrkvwBiq +(1) Bash variables saved in: /tmp/pash_4r0oepfa/pash_ZgUrkvwBiq +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_4r0oepfa/tmpkqkaeitr ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 68.152 ms +Total nodes after optimization: 174 + -- out of which: +Cat nodes: 1 +Eager nodes: 90 +Optimization time: 6.516 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file19, #file30, #file31, #file32, #file33, #file34, #file35, #file36, #file37, #file38, #file39, #file40, #file41, #file42, #file43, #file44, #file45], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file157, #file158], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file159, #file160], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file161, #file162], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file163, #file164], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file165, #file166], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file167, #file168], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file169, #file170], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file171, #file172], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file173, #file174], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file175, #file176], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file177, #file178], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file179, #file180], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file181, #file182], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file183, #file184], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file185, #file186], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file25, #file94, #file95, #file96, #file97, #file98, #file99, #file100, #file101, #file102, #file103, #file104, #file105, #file106, #file107, #file108, #file109], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file202, #file203], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file204, #file205], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file206, #file207], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file208, #file209], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file210, #file211], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file212, #file213], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file214, #file215], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file216, #file217], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file218, #file219], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file220, #file221], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file222, #file223], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file224, #file225], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file226, #file227], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file228, #file229], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file230, #file231], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file142], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file31, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file32, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file37, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file68, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file69, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file70, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file71, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file72, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file73, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file74, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file75, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file76, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file77, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file86, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file87, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file201], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file202], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file203], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file204], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file205], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file206], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file207], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file208], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file209], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file210], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file211], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file212], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file213], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file214], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file215], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file216], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file217], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file218], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file219], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file220], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file221], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file222], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file223], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file224], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file225], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file226], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file227], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file228], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file229], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file230], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file231], []) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 43.105 ms +Optimized script saved in: /tmp/pash_4r0oepfa/pash_kjNSRDeEi7 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_4r0oepfa/pash_ZgUrkvwBiq +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_4r0oepfa/pash_kjNSRDeEi7: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +mkfifo "#file220" +mkfifo "#file221" +mkfifo "#file222" +mkfifo "#file223" +mkfifo "#file224" +mkfifo "#file225" +mkfifo "#file226" +mkfifo "#file227" +mkfifo "#file228" +mkfifo "#file229" +mkfifo "#file230" +mkfifo "#file231" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ uniq -c <"#file23" >"#file25" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file19" "#file30" "#file31" "#file32" "#file33" "#file34" "#file35" "#file36" "#file37" "#file38" "#file39" "#file40" "#file41" "#file42" "#file43" "#file44" "#file45" & } +{ tr A-Z a-z <"#file142" >"#file47" & } +{ tr A-Z a-z <"#file143" >"#file48" & } +{ tr A-Z a-z <"#file144" >"#file49" & } +{ tr A-Z a-z <"#file145" >"#file50" & } +{ tr A-Z a-z <"#file146" >"#file51" & } +{ tr A-Z a-z <"#file147" >"#file52" & } +{ tr A-Z a-z <"#file148" >"#file53" & } +{ tr A-Z a-z <"#file149" >"#file54" & } +{ tr A-Z a-z <"#file150" >"#file55" & } +{ tr A-Z a-z <"#file151" >"#file56" & } +{ tr A-Z a-z <"#file152" >"#file57" & } +{ tr A-Z a-z <"#file153" >"#file58" & } +{ tr A-Z a-z <"#file154" >"#file59" & } +{ tr A-Z a-z <"#file155" >"#file60" & } +{ tr A-Z a-z <"#file156" >"#file61" & } +{ tr A-Z a-z <"#file45" >"#file62" & } +{ sort <"#file47" >"#file63" & } +{ sort <"#file48" >"#file64" & } +{ sort <"#file49" >"#file65" & } +{ sort <"#file50" >"#file66" & } +{ sort <"#file51" >"#file67" & } +{ sort <"#file52" >"#file68" & } +{ sort <"#file53" >"#file69" & } +{ sort <"#file54" >"#file70" & } +{ sort <"#file55" >"#file71" & } +{ sort <"#file56" >"#file72" & } +{ sort <"#file57" >"#file73" & } +{ sort <"#file58" >"#file74" & } +{ sort <"#file59" >"#file75" & } +{ sort <"#file60" >"#file76" & } +{ sort <"#file61" >"#file77" & } +{ sort <"#file62" >"#file78" & } +{ sort -m "#file157" "#file158" >"#file79" & } +{ sort -m "#file159" "#file160" >"#file80" & } +{ sort -m "#file161" "#file162" >"#file81" & } +{ sort -m "#file163" "#file164" >"#file82" & } +{ sort -m "#file165" "#file166" >"#file83" & } +{ sort -m "#file167" "#file168" >"#file84" & } +{ sort -m "#file169" "#file170" >"#file85" & } +{ sort -m "#file171" "#file172" >"#file86" & } +{ sort -m "#file173" "#file174" >"#file87" & } +{ sort -m "#file175" "#file176" >"#file88" & } +{ sort -m "#file177" "#file178" >"#file89" & } +{ sort -m "#file179" "#file180" >"#file90" & } +{ sort -m "#file181" "#file182" >"#file91" & } +{ sort -m "#file183" "#file184" >"#file92" & } +{ sort -m "#file185" "#file186" >"#file23" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file25" "#file94" "#file95" "#file96" "#file97" "#file98" "#file99" "#file100" "#file101" "#file102" "#file103" "#file104" "#file105" "#file106" "#file107" "#file108" "#file109" & } +{ sort -rn <"#file187" >"#file111" & } +{ sort -rn <"#file188" >"#file112" & } +{ sort -rn <"#file189" >"#file113" & } +{ sort -rn <"#file190" >"#file114" & } +{ sort -rn <"#file191" >"#file115" & } +{ sort -rn <"#file192" >"#file116" & } +{ sort -rn <"#file193" >"#file117" & } +{ sort -rn <"#file194" >"#file118" & } +{ sort -rn <"#file195" >"#file119" & } +{ sort -rn <"#file196" >"#file120" & } +{ sort -rn <"#file197" >"#file121" & } +{ sort -rn <"#file198" >"#file122" & } +{ sort -rn <"#file199" >"#file123" & } +{ sort -rn <"#file200" >"#file124" & } +{ sort -rn <"#file201" >"#file125" & } +{ sort -rn <"#file109" >"#file126" & } +{ sort -rn -m "#file202" "#file203" >"#file127" & } +{ sort -rn -m "#file204" "#file205" >"#file128" & } +{ sort -rn -m "#file206" "#file207" >"#file129" & } +{ sort -rn -m "#file208" "#file209" >"#file130" & } +{ sort -rn -m "#file210" "#file211" >"#file131" & } +{ sort -rn -m "#file212" "#file213" >"#file132" & } +{ sort -rn -m "#file214" "#file215" >"#file133" & } +{ sort -rn -m "#file216" "#file217" >"#file134" & } +{ sort -rn -m "#file218" "#file219" >"#file135" & } +{ sort -rn -m "#file220" "#file221" >"#file136" & } +{ sort -rn -m "#file222" "#file223" >"#file137" & } +{ sort -rn -m "#file224" "#file225" >"#file138" & } +{ sort -rn -m "#file226" "#file227" >"#file139" & } +{ sort -rn -m "#file228" "#file229" >"#file140" & } +{ sort -rn -m "#file230" "#file231" >"#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file142" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file31" "#file143" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file32" "#file144" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file145" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file146" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file147" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file148" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file37" "#file149" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file150" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file151" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file152" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file153" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file154" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file155" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file156" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file157" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file158" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file159" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file160" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file161" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file68" "#file162" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file69" "#file163" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file70" "#file164" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file71" "#file165" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file72" "#file166" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file73" "#file167" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file74" "#file168" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file75" "#file169" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file76" "#file170" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file77" "#file171" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file172" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file173" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file174" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file175" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file176" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file177" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file178" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file179" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file86" "#file180" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file87" "#file181" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file182" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file183" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file184" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file185" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file186" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file187" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file188" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file189" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file190" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file191" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file192" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file193" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file194" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file195" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file196" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file197" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file198" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file199" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file200" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file201" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file202" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file203" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file204" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file205" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file206" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file207" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file208" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file209" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file210" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file211" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file212" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file213" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file214" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file215" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file216" "/tmp/pash_eager_intermediate_#file75" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file217" "/tmp/pash_eager_intermediate_#file76" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file218" "/tmp/pash_eager_intermediate_#file77" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file219" "/tmp/pash_eager_intermediate_#file78" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file220" "/tmp/pash_eager_intermediate_#file79" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file221" "/tmp/pash_eager_intermediate_#file80" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file222" "/tmp/pash_eager_intermediate_#file81" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file223" "/tmp/pash_eager_intermediate_#file82" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file224" "/tmp/pash_eager_intermediate_#file83" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file225" "/tmp/pash_eager_intermediate_#file84" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file226" "/tmp/pash_eager_intermediate_#file85" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file227" "/tmp/pash_eager_intermediate_#file86" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file228" "/tmp/pash_eager_intermediate_#file87" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file229" "/tmp/pash_eager_intermediate_#file88" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file230" "/tmp/pash_eager_intermediate_#file89" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file231" "/tmp/pash_eager_intermediate_#file90" & } +{ sed 1000q <"#file27" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_4r0oepfa/pash_Z4fqRGGWUu +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_4r0oepfa/pash_YSWTo2fURi +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 68248.528 ms +(7) Recovering BaSh variables from: /tmp/pash_4r0oepfa/pash_YSWTo2fURi +/dev/fd/63: line 42: declare: PPID: readonly variable +/dev/fd/63: line 49: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 54: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_4r0oepfa/pash_Z4fqRGGWUu +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_4r0oepfa/tmpp9ne4l6h +Preprocessing time: 5.054 ms + +real 1m8.597s +user 6m26.988s +sys 0m36.894s +Files /home/ubuntu/pash/evaluation//small_intermediary//topn_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_16_distr_no_eager.time new file mode 100644 index 000000000..1c68e8d81 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_16_distr_no_eager.time @@ -0,0 +1,124 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_hDxi4hHzqE +(1) Bash variables saved in: /tmp/pash_hDxi4hHzqE +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 287.057 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.352 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 15.077 ms +Optimized script saved in: /tmp/pash_3yLHzMHczX +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_hDxi4hHzqE +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_3yLHzMHczX: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ sort <"#file21" >"#file23" & } +{ uniq -c <"#file23" >"#file25" & } +{ sort -rn <"#file25" >"#file27" & } +{ sed 1000q <"#file27" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (123117) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_xGg5zmEH0G +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_7e8ctdquxe +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 414887.068 ms +(7) Recovering BaSh variables from: /tmp/pash_7e8ctdquxe +/dev/fd/63: line 51: declare: PPID: readonly variable +/dev/fd/63: line 59: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 93: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_xGg5zmEH0G +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_avwmsqfk +Preprocessing time: 27.82 ms + +real 6m55.590s +user 7m2.540s +sys 0m14.021s +Files /home/nikos/dish/evaluation//small_intermediary//topn_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..c94d1e297 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_16_distr_no_task_par_eager.time @@ -0,0 +1,124 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_IxsSHEHZ9r +(1) Bash variables saved in: /tmp/pash_IxsSHEHZ9r +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 290.146 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.489 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 15.094 ms +Optimized script saved in: /tmp/pash_xOacThWXzT +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_IxsSHEHZ9r +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_xOacThWXzT: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ sort <"#file21" >"#file23" & } +{ uniq -c <"#file23" >"#file25" & } +{ sort -rn <"#file25" >"#file27" & } +{ sed 1000q <"#file27" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (123505) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_dmUk9QDu0M +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_9swaZKcsyW +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 416562.701 ms +(7) Recovering BaSh variables from: /tmp/pash_9swaZKcsyW +/dev/fd/63: line 51: declare: PPID: readonly variable +/dev/fd/63: line 59: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 93: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_dmUk9QDu0M +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_fhdhfyeg +Preprocessing time: 28.076 ms + +real 6m57.271s +user 7m1.940s +sys 0m14.877s +Files /home/nikos/dish/evaluation//small_intermediary//topn_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_distr_auto_split.time new file mode 100644 index 000000000..85eddcda3 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_distr_auto_split.time @@ -0,0 +1,207 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_x29_2xcp/pash_3MLdv35ZPt +(1) Bash variables saved in: /tmp/pash_x29_2xcp/pash_3MLdv35ZPt +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_x29_2xcp/tmpdmrad7ah ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 13.549 ms +Total nodes after optimization: 20 + -- out of which: +Cat nodes: 1 +Eager nodes: 6 +Optimization time: 1.086 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file5, #file16, #file17], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file31, #file32], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file11, #file24, #file25], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file34, #file35], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file16, #file30], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file21, #file31], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file22, #file32], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file24, #file33], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file27, #file34], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file35], []) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 4.173 ms +Optimized script saved in: /tmp/pash_x29_2xcp/pash_loZqIwSrcV +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_x29_2xcp/pash_3MLdv35ZPt +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_x29_2xcp/pash_loZqIwSrcV: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file16" +mkfifo "#file17" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ uniq -c <"#file9" >"#file11" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file5" "#file16" "#file17" & } +{ tr A-Z a-z <"#file30" >"#file19" & } +{ tr A-Z a-z <"#file17" >"#file20" & } +{ sort <"#file19" >"#file21" & } +{ sort <"#file20" >"#file22" & } +{ sort -m "#file31" "#file32" >"#file9" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file11" "#file24" "#file25" & } +{ sort -rn <"#file33" >"#file27" & } +{ sort -rn <"#file25" >"#file28" & } +{ sort -rn -m "#file34" "#file35" >"#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file16" "#file30" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file21" "#file31" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file22" "#file32" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file24" "#file33" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file27" "#file34" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file35" "/tmp/pash_eager_intermediate_#file6" & } +{ sed 1000q <"#file13" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_x29_2xcp/pash_eeguzaL2Sn +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_x29_2xcp/pash_skN4wjmwYA +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 104767.059 ms +(7) Recovering BaSh variables from: /tmp/pash_x29_2xcp/pash_skN4wjmwYA +/dev/fd/63: line 28: declare: PPID: readonly variable +/dev/fd/63: line 35: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 40: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_x29_2xcp/pash_eeguzaL2Sn +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_x29_2xcp/tmpajx2_tta +Preprocessing time: 4.963 ms + +real 1m45.017s +user 3m13.912s +sys 0m19.203s +Files /home/ubuntu/pash/evaluation//small_intermediary//topn_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_distr_no_eager.time new file mode 100644 index 000000000..3c3bc8766 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_distr_no_eager.time @@ -0,0 +1,110 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_92Ie1m6crn +(1) Bash variables saved in: /tmp/pash_92Ie1m6crn +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 50.346 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.282 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 8.546 ms +Optimized script saved in: /tmp/pash_tJycp8OrGp +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_92Ie1m6crn +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_tJycp8OrGp: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ sort <"#file7" >"#file9" & } +{ uniq -c <"#file9" >"#file11" & } +{ sort -rn <"#file11" >"#file13" & } +{ sed 1000q <"#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (121776) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_Dc2rklKGGZ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_FFKVFnw2nv +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 412826.113 ms +(7) Recovering BaSh variables from: /tmp/pash_FFKVFnw2nv +/dev/fd/63: line 37: declare: PPID: readonly variable +/dev/fd/63: line 45: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 79: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_Dc2rklKGGZ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_swymfuox +Preprocessing time: 28.982 ms + +real 6m53.293s +user 7m1.379s +sys 0m14.078s +Files /home/nikos/dish/evaluation//small_intermediary//topn_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..0e8e0ee13 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_distr_no_task_par_eager.time @@ -0,0 +1,110 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_S6nM3Ud78i +(1) Bash variables saved in: /tmp/pash_S6nM3Ud78i +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 50.694 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.377 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 9.442 ms +Optimized script saved in: /tmp/pash_qro4z3SYQ2 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_S6nM3Ud78i +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_qro4z3SYQ2: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ sort <"#file7" >"#file9" & } +{ uniq -c <"#file9" >"#file11" & } +{ sort -rn <"#file11" >"#file13" & } +{ sed 1000q <"#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (122245) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_sXZRtxNv0m +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_BLvGuILGw2 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 414862.282 ms +(7) Recovering BaSh variables from: /tmp/pash_BLvGuILGw2 +/dev/fd/63: line 37: declare: PPID: readonly variable +/dev/fd/63: line 45: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 79: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_sXZRtxNv0m +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_dbygwyxu +Preprocessing time: 27.976 ms + +real 6m55.323s +user 7m0.524s +sys 0m13.870s +Files /home/nikos/dish/evaluation//small_intermediary//topn_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_seq.time new file mode 100644 index 000000000..c709092fb --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/topn_2_seq.time @@ -0,0 +1,4 @@ + +real 2m47.479s +user 2m51.807s +sys 0m8.039s diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_16_distr_auto_split.time new file mode 100644 index 000000000..0b43cd2bf --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_16_distr_auto_split.time @@ -0,0 +1,1229 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_z_yb3dt4/pash_OEBHrecSlr +(1) Bash variables saved in: /tmp/pash_z_yb3dt4/pash_OEBHrecSlr +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_z_yb3dt4/tmp9m4y9kg_ ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 69.092 ms +Total nodes after optimization: 174 + -- out of which: +Cat nodes: 1 +Eager nodes: 90 +Optimization time: 6.609 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file19, #file30, #file31, #file32, #file33, #file34, #file35, #file36, #file37, #file38, #file39, #file40, #file41, #file42, #file43, #file44, #file45], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file157, #file158], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file159, #file160], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file161, #file162], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file163, #file164], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file165, #file166], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file167, #file168], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file169, #file170], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file171, #file172], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file173, #file174], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file175, #file176], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file177, #file178], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file179, #file180], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file181, #file182], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file183, #file184], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file185, #file186], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file25, #file94, #file95, #file96, #file97, #file98, #file99, #file100, #file101, #file102, #file103, #file104, #file105, #file106, #file107, #file108, #file109], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file202, #file203], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file204, #file205], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file206, #file207], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file208, #file209], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file210, #file211], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file212, #file213], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file214, #file215], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file216, #file217], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file218, #file219], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file220, #file221], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file222, #file223], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file224, #file225], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file226, #file227], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file228, #file229], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file230, #file231], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file142], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file31, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file32, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file37, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file68, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file69, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file70, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file71, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file72, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file73, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file74, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file75, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file76, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file77, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file86, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file87, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file201], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file202], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file203], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file204], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file205], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file206], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file207], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file208], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file209], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file210], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file211], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file212], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file213], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file214], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file215], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file216], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file217], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file218], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file219], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file220], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file221], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file222], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file223], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file224], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file225], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file226], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file227], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file228], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file229], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file230], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file231], []) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 45.312 ms +Optimized script saved in: /tmp/pash_z_yb3dt4/pash_UA0Azbyhhk +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_z_yb3dt4/pash_OEBHrecSlr +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_z_yb3dt4/pash_UA0Azbyhhk: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +mkfifo "#file220" +mkfifo "#file221" +mkfifo "#file222" +mkfifo "#file223" +mkfifo "#file224" +mkfifo "#file225" +mkfifo "#file226" +mkfifo "#file227" +mkfifo "#file228" +mkfifo "#file229" +mkfifo "#file230" +mkfifo "#file231" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z"\\n" <"#file17" >"#file19" & } +{ uniq -c <"#file23" >"#file25" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file19" "#file30" "#file31" "#file32" "#file33" "#file34" "#file35" "#file36" "#file37" "#file38" "#file39" "#file40" "#file41" "#file42" "#file43" "#file44" "#file45" & } +{ tr A-Z a-z <"#file142" >"#file47" & } +{ tr A-Z a-z <"#file143" >"#file48" & } +{ tr A-Z a-z <"#file144" >"#file49" & } +{ tr A-Z a-z <"#file145" >"#file50" & } +{ tr A-Z a-z <"#file146" >"#file51" & } +{ tr A-Z a-z <"#file147" >"#file52" & } +{ tr A-Z a-z <"#file148" >"#file53" & } +{ tr A-Z a-z <"#file149" >"#file54" & } +{ tr A-Z a-z <"#file150" >"#file55" & } +{ tr A-Z a-z <"#file151" >"#file56" & } +{ tr A-Z a-z <"#file152" >"#file57" & } +{ tr A-Z a-z <"#file153" >"#file58" & } +{ tr A-Z a-z <"#file154" >"#file59" & } +{ tr A-Z a-z <"#file155" >"#file60" & } +{ tr A-Z a-z <"#file156" >"#file61" & } +{ tr A-Z a-z <"#file45" >"#file62" & } +{ sort <"#file47" >"#file63" & } +{ sort <"#file48" >"#file64" & } +{ sort <"#file49" >"#file65" & } +{ sort <"#file50" >"#file66" & } +{ sort <"#file51" >"#file67" & } +{ sort <"#file52" >"#file68" & } +{ sort <"#file53" >"#file69" & } +{ sort <"#file54" >"#file70" & } +{ sort <"#file55" >"#file71" & } +{ sort <"#file56" >"#file72" & } +{ sort <"#file57" >"#file73" & } +{ sort <"#file58" >"#file74" & } +{ sort <"#file59" >"#file75" & } +{ sort <"#file60" >"#file76" & } +{ sort <"#file61" >"#file77" & } +{ sort <"#file62" >"#file78" & } +{ sort -m "#file157" "#file158" >"#file79" & } +{ sort -m "#file159" "#file160" >"#file80" & } +{ sort -m "#file161" "#file162" >"#file81" & } +{ sort -m "#file163" "#file164" >"#file82" & } +{ sort -m "#file165" "#file166" >"#file83" & } +{ sort -m "#file167" "#file168" >"#file84" & } +{ sort -m "#file169" "#file170" >"#file85" & } +{ sort -m "#file171" "#file172" >"#file86" & } +{ sort -m "#file173" "#file174" >"#file87" & } +{ sort -m "#file175" "#file176" >"#file88" & } +{ sort -m "#file177" "#file178" >"#file89" & } +{ sort -m "#file179" "#file180" >"#file90" & } +{ sort -m "#file181" "#file182" >"#file91" & } +{ sort -m "#file183" "#file184" >"#file92" & } +{ sort -m "#file185" "#file186" >"#file23" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file25" "#file94" "#file95" "#file96" "#file97" "#file98" "#file99" "#file100" "#file101" "#file102" "#file103" "#file104" "#file105" "#file106" "#file107" "#file108" "#file109" & } +{ sort -rn <"#file187" >"#file111" & } +{ sort -rn <"#file188" >"#file112" & } +{ sort -rn <"#file189" >"#file113" & } +{ sort -rn <"#file190" >"#file114" & } +{ sort -rn <"#file191" >"#file115" & } +{ sort -rn <"#file192" >"#file116" & } +{ sort -rn <"#file193" >"#file117" & } +{ sort -rn <"#file194" >"#file118" & } +{ sort -rn <"#file195" >"#file119" & } +{ sort -rn <"#file196" >"#file120" & } +{ sort -rn <"#file197" >"#file121" & } +{ sort -rn <"#file198" >"#file122" & } +{ sort -rn <"#file199" >"#file123" & } +{ sort -rn <"#file200" >"#file124" & } +{ sort -rn <"#file201" >"#file125" & } +{ sort -rn <"#file109" >"#file126" & } +{ sort -rn -m "#file202" "#file203" >"#file127" & } +{ sort -rn -m "#file204" "#file205" >"#file128" & } +{ sort -rn -m "#file206" "#file207" >"#file129" & } +{ sort -rn -m "#file208" "#file209" >"#file130" & } +{ sort -rn -m "#file210" "#file211" >"#file131" & } +{ sort -rn -m "#file212" "#file213" >"#file132" & } +{ sort -rn -m "#file214" "#file215" >"#file133" & } +{ sort -rn -m "#file216" "#file217" >"#file134" & } +{ sort -rn -m "#file218" "#file219" >"#file135" & } +{ sort -rn -m "#file220" "#file221" >"#file136" & } +{ sort -rn -m "#file222" "#file223" >"#file137" & } +{ sort -rn -m "#file224" "#file225" >"#file138" & } +{ sort -rn -m "#file226" "#file227" >"#file139" & } +{ sort -rn -m "#file228" "#file229" >"#file140" & } +{ sort -rn -m "#file230" "#file231" >"#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file142" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file31" "#file143" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file32" "#file144" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file145" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file146" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file147" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file148" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file37" "#file149" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file150" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file151" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file152" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file153" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file154" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file155" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file156" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file157" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file158" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file159" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file160" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file161" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file68" "#file162" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file69" "#file163" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file70" "#file164" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file71" "#file165" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file72" "#file166" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file73" "#file167" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file74" "#file168" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file75" "#file169" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file76" "#file170" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file77" "#file171" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file172" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file173" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file174" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file175" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file176" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file177" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file178" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file179" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file86" "#file180" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file87" "#file181" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file182" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file183" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file184" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file185" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file186" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file187" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file188" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file189" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file190" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file191" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file192" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file193" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file194" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file195" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file196" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file197" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file198" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file199" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file200" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file201" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file202" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file203" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file204" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file205" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file206" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file207" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file208" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file209" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file210" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file211" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file212" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file213" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file214" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file215" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file216" "/tmp/pash_eager_intermediate_#file75" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file217" "/tmp/pash_eager_intermediate_#file76" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file218" "/tmp/pash_eager_intermediate_#file77" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file219" "/tmp/pash_eager_intermediate_#file78" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file220" "/tmp/pash_eager_intermediate_#file79" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file221" "/tmp/pash_eager_intermediate_#file80" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file222" "/tmp/pash_eager_intermediate_#file81" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file223" "/tmp/pash_eager_intermediate_#file82" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file224" "/tmp/pash_eager_intermediate_#file83" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file225" "/tmp/pash_eager_intermediate_#file84" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file226" "/tmp/pash_eager_intermediate_#file85" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file227" "/tmp/pash_eager_intermediate_#file86" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file228" "/tmp/pash_eager_intermediate_#file87" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file229" "/tmp/pash_eager_intermediate_#file88" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file230" "/tmp/pash_eager_intermediate_#file89" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file231" "/tmp/pash_eager_intermediate_#file90" & } +{ sed q <"#file27" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_z_yb3dt4/pash_20kyP2258b +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_z_yb3dt4/pash_Hr31THGE5e +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 23919.739 ms +(7) Recovering BaSh variables from: /tmp/pash_z_yb3dt4/pash_Hr31THGE5e +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_z_yb3dt4/pash_20kyP2258b +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_z_yb3dt4/tmpxr_711wd +Preprocessing time: 4.896 ms + +real 0m24.268s +user 1m41.980s +sys 0m31.734s +Files /home/ubuntu/pash/evaluation//small_intermediary//wf_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_16_distr_no_eager.time new file mode 100644 index 000000000..da87a49dd --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_16_distr_no_eager.time @@ -0,0 +1,124 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_OwAFd73cQx +(1) Bash variables saved in: /tmp/pash_OwAFd73cQx +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 290.697 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.434 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 35.155 ms +Optimized script saved in: /tmp/pash_1EwKd6W05U +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_OwAFd73cQx +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_1EwKd6W05U: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z"\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ sort <"#file21" >"#file23" & } +{ uniq -c <"#file23" >"#file25" & } +{ sort -rn <"#file25" >"#file27" & } +{ sed q <"#file27" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (126127) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_wh7ZP8UYQp +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_qEfrxn757F +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 131446.819 ms +(7) Recovering BaSh variables from: /tmp/pash_qEfrxn757F +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_wh7ZP8UYQp +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_ozwfggej +Preprocessing time: 28.572 ms + +real 2m12.175s +user 2m10.605s +sys 0m11.315s +Files /home/nikos/dish/evaluation//small_intermediary//wf_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..2567c7d8e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_16_distr_no_task_par_eager.time @@ -0,0 +1,124 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_mdPbDjRf1L +(1) Bash variables saved in: /tmp/pash_mdPbDjRf1L +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 290.648 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.464 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 15.386 ms +Optimized script saved in: /tmp/pash_52zLDHgTHl +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_mdPbDjRf1L +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_52zLDHgTHl: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z"\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ sort <"#file21" >"#file23" & } +{ uniq -c <"#file23" >"#file25" & } +{ sort -rn <"#file25" >"#file27" & } +{ sed q <"#file27" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (126373) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_WLzGufblPQ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_36M0H8mpYo +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 130596.176 ms +(7) Recovering BaSh variables from: /tmp/pash_36M0H8mpYo +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_WLzGufblPQ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_taijgotp +Preprocessing time: 28.511 ms + +real 2m11.302s +user 2m9.868s +sys 0m11.056s +Files /home/nikos/dish/evaluation//small_intermediary//wf_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_distr_auto_split.time new file mode 100644 index 000000000..da31df937 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_distr_auto_split.time @@ -0,0 +1,207 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_sv4_hqe_/pash_a0hvNXtBVH +(1) Bash variables saved in: /tmp/pash_sv4_hqe_/pash_a0hvNXtBVH +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_sv4_hqe_/tmpm4lvamsx ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 13.576 ms +Total nodes after optimization: 20 + -- out of which: +Cat nodes: 1 +Eager nodes: 6 +Optimization time: 1.109 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file5, #file16, #file17], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file31, #file32], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file11, #file24, #file25], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file34, #file35], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file16, #file30], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file21, #file31], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file22, #file32], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file24, #file33], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file27, #file34], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file35], []) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 4.162 ms +Optimized script saved in: /tmp/pash_sv4_hqe_/pash_oni5Gff2fG +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_sv4_hqe_/pash_a0hvNXtBVH +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_sv4_hqe_/pash_oni5Gff2fG: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file16" +mkfifo "#file17" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z"\\n" <"#file3" >"#file5" & } +{ uniq -c <"#file9" >"#file11" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file5" "#file16" "#file17" & } +{ tr A-Z a-z <"#file30" >"#file19" & } +{ tr A-Z a-z <"#file17" >"#file20" & } +{ sort <"#file19" >"#file21" & } +{ sort <"#file20" >"#file22" & } +{ sort -m "#file31" "#file32" >"#file9" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file11" "#file24" "#file25" & } +{ sort -rn <"#file33" >"#file27" & } +{ sort -rn <"#file25" >"#file28" & } +{ sort -rn -m "#file34" "#file35" >"#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file16" "#file30" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file21" "#file31" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file22" "#file32" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file24" "#file33" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file27" "#file34" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file35" "/tmp/pash_eager_intermediate_#file6" & } +{ sed q <"#file13" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_sv4_hqe_/pash_AhbRiG5K29 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_sv4_hqe_/pash_IIv6DOcohL +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 34982.818 ms +(7) Recovering BaSh variables from: /tmp/pash_sv4_hqe_/pash_IIv6DOcohL +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_sv4_hqe_/pash_AhbRiG5K29 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_sv4_hqe_/tmpqxn4worh +Preprocessing time: 4.755 ms + +real 0m35.229s +user 1m0.206s +sys 0m15.302s +Files /home/ubuntu/pash/evaluation//small_intermediary//wf_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_distr_no_eager.time new file mode 100644 index 000000000..3281a8813 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_distr_no_eager.time @@ -0,0 +1,110 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ebR9me7DxI +(1) Bash variables saved in: /tmp/pash_ebR9me7DxI +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 51.436 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.272 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 10.06 ms +Optimized script saved in: /tmp/pash_1ulKKYOC7q +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_ebR9me7DxI +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_1ulKKYOC7q: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z"\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ sort <"#file7" >"#file9" & } +{ uniq -c <"#file9" >"#file11" & } +{ sort -rn <"#file11" >"#file13" & } +{ sed q <"#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (125221) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_RnzCDO4LNJ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_ED87EX7yFd +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 132011.633 ms +(7) Recovering BaSh variables from: /tmp/pash_ED87EX7yFd +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_RnzCDO4LNJ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_zmwdgoie +Preprocessing time: 26.517 ms + +real 2m12.481s +user 2m10.949s +sys 0m11.274s +Files /home/nikos/dish/evaluation//small_intermediary//wf_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..c260b3025 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_distr_no_task_par_eager.time @@ -0,0 +1,110 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_kg5NMJYk3Y +(1) Bash variables saved in: /tmp/pash_kg5NMJYk3Y +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 49.401 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.339 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 9.612 ms +Optimized script saved in: /tmp/pash_XgncMcGqQx +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_kg5NMJYk3Y +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_XgncMcGqQx: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z"\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ sort <"#file7" >"#file9" & } +{ uniq -c <"#file9" >"#file11" & } +{ sort -rn <"#file11" >"#file13" & } +{ sed q <"#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (125442) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_LbJojmrySN +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_OnyUZuigvG +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 130374.284 ms +(7) Recovering BaSh variables from: /tmp/pash_OnyUZuigvG +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_LbJojmrySN +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_yncgjypk +Preprocessing time: 27.198 ms + +real 2m10.829s +user 2m9.037s +sys 0m11.394s +Files /home/nikos/dish/evaluation//small_intermediary//wf_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_seq.time b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_seq.time new file mode 100644 index 000000000..b2cdf83d0 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/fast_disk_instance/eurosys_small/wf_2_seq.time @@ -0,0 +1,4 @@ + +real 0m54.892s +user 0m54.573s +sys 0m7.919s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_16_distr.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_16_distr.time new file mode 100644 index 000000000..67ac3d04c --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_16_distr.time @@ -0,0 +1,114 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_TqhpnnVc6y +(1) Bash variables saved in: /tmp/pash_TqhpnnVc6y +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: bigrams_aux +|-- (['stdin'], ['stdout'], []) +class: pure found for: bigrams_aux +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Compilation time: 287.285 ms +Total nodes after optimization: 6 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.312 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: bigrams_aux +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +Backend time: 12.999 ms +Optimized script saved in: /tmp/pash_axmnDmDzkD +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_TqhpnnVc6y +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_axmnDmDzkD: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ bigrams_aux <"#file21" >"#file23" & } +{ sort <"#file23" >"#file25" & } +{ uniq <"#file25" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (5702) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_mKuONyjtbL +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pJzRg88Hkj +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 71221.644 ms +(7) Recovering BaSh variables from: /tmp/pash_pJzRg88Hkj +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_mKuONyjtbL +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_adyqmdye +Preprocessing time: 27.264 ms + +real 1m11.931s +user 1m16.377s +sys 0m6.593s +Files /home/nikos/dish/evaluation//small_intermediary//bigrams_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_16_distr_auto_split.time new file mode 100644 index 000000000..b565f39ee --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_16_distr_auto_split.time @@ -0,0 +1,2116 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_24zipanp/pash_eRfY07g0hk +(1) Bash variables saved in: /tmp/pash_24zipanp/pash_eRfY07g0hk +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_24zipanp/tmpix1xo1r8 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: bigrams_aux +|-- (['stdin'], ['stdout'], []) +class: pure found for: bigrams_aux +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Compilation time: 71.619 ms +Total nodes after optimization: 284 + -- out of which: +Cat nodes: 4 +Eager nodes: 181 +Optimization time: 9.881 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file19, #file28, #file29, #file30, #file31, #file32, #file33, #file34, #file35, #file36, #file37, #file38, #file39, #file40, #file41, #file42, #file43], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: bigram_aux_map +|-- ([#file45, #file61, #file62, #file63], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file46, #file64, #file65, #file66], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file47, #file67, #file68, #file69], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file48, #file70, #file71, #file72], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file49, #file73, #file74, #file75], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file50, #file76, #file77, #file78], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file51, #file79, #file80, #file81], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file52, #file82, #file83, #file84], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file53, #file85, #file86, #file87], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file54, #file88, #file89, #file90], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file55, #file91, #file92, #file93], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file56, #file94, #file95, #file96], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file57, #file97, #file98, #file99], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file58, #file100, #file101, #file102], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file59, #file103, #file104, #file105], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file60, #file106, #file107, #file108], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file254, #file255, #file256, #file257, #file258, #file259, #file109, #file110, #file111], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file260, #file261, #file262, #file263, #file264, #file265, #file112, #file113, #file114], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file266, #file267, #file268, #file269, #file270, #file271, #file115, #file116, #file117], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file272, #file273, #file274, #file275, #file276, #file277, #file118, #file119, #file120], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file278, #file279, #file280, #file281, #file282, #file283, #file121, #file122, #file123], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file284, #file285, #file286, #file287, #file288, #file289, #file124, #file125, #file126], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file290, #file291, #file292, #file293, #file294, #file295, #file127, #file128, #file129], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file296, #file297, #file298, #file299, #file300, #file301, #file130, #file131, #file132], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file302, #file303, #file304, #file305, #file306, #file307, #file133, #file134, #file135], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file308, #file309, #file310, #file311, #file312, #file313, #file136, #file137, #file138], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file314, #file315, #file316, #file317, #file318, #file319, #file139, #file140, #file141], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file320, #file321, #file322, #file323, #file324, #file325, #file142, #file143, #file144], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file326, #file327, #file328, #file329, #file330, #file331, #file145, #file146, #file147], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file332, #file333, #file334, #file335, #file336, #file337, #file148, #file149, #file150], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file338, #file339, #file340, #file341, #file342, #file343, #file23, #file152, #file153], []) +arguments, redirs found for: cat +|-- ([#file152], [['File', ['To', 1, [['C', 47], ['C', 100], ['C', 101], ['C', 118], ['C', 47], ['C', 110], ['C', 117], ['C', 108], ['C', 108]]]]]) +arguments, redirs found for: cat +|-- ([#file153], [['File', ['To', 1, [['C', 47], ['C', 100], ['C', 101], ['C', 118], ['C', 47], ['C', 110], ['C', 117], ['C', 108], ['C', 108]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file23, #file156, #file157, #file158, #file159, #file160, #file161, #file162, #file163, #file164, #file165, #file166, #file167, #file168, #file169, #file170, #file171], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file359, #file360], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file361, #file362], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file363, #file364], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file365, #file366], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file367, #file368], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file369, #file370], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file371, #file372], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file373, #file374], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file375, #file376], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file377, #file378], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file379, #file380], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file381, #file382], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file383, #file384], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file385, #file386], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file387, #file388], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file25, #file204, #file205, #file206, #file207, #file208, #file209, #file210, #file211, #file212, #file213, #file214, #file215, #file216, #file217, #file218, #file219], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: cat +|-- ([#file404, #file405, #file406, #file407, #file408, #file409, #file410, #file411, #file412, #file413, #file414, #file415, #file416, #file417, #file418, #file419], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file239], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file240], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file241], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file31, #file242], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file32, #file243], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file244], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file245], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file246], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file247], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file37, #file248], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file249], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file250], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file251], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file252], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file253], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file61, #file254], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file62, #file255], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file256], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file257], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file258], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file259], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file260], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file68, #file261], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file69, #file262], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file70, #file263], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file71, #file264], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file72, #file265], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file73, #file266], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file74, #file267], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file75, #file268], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file76, #file269], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file77, #file270], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file271], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file272], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file273], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file274], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file275], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file276], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file277], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file278], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file86, #file279], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file87, #file280], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file281], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file282], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file283], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file284], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file285], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file93, #file286], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file287], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file288], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file289], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file290], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file291], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file292], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file293], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file294], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file295], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file296], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file297], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file298], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file299], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file300], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file301], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file302], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file303], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file304], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file305], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file306], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file307], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file308], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file309], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file310], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file311], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file312], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file313], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file314], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file315], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file316], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file317], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file318], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file319], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file320], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file321], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file322], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file323], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file324], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file325], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file326], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file327], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file328], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file329], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file330], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file331], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file332], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file333], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file141, #file334], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file142, #file335], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file143, #file336], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file144, #file337], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file145, #file338], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file146, #file339], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file147, #file340], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file148, #file341], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file149, #file342], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file150, #file343], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file156, #file344], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file157, #file345], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file158, #file346], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file159, #file347], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file160, #file348], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file161, #file349], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file162, #file350], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file163, #file351], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file164, #file352], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file165, #file353], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file166, #file354], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file167, #file355], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file168, #file356], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file169, #file357], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file170, #file358], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file173, #file359], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file174, #file360], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file175, #file361], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file176, #file362], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file177, #file363], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file178, #file364], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file179, #file365], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file180, #file366], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file181, #file367], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file182, #file368], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file183, #file369], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file184, #file370], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file185, #file371], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file186, #file372], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file187, #file373], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file188, #file374], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file189, #file375], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file190, #file376], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file191, #file377], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file192, #file378], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file193, #file379], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file194, #file380], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file195, #file381], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file196, #file382], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file197, #file383], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file198, #file384], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file199, #file385], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file200, #file386], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file201, #file387], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file202, #file388], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file204, #file389], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file205, #file390], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file206, #file391], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file207, #file392], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file208, #file393], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file209, #file394], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file210, #file395], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file211, #file396], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file212, #file397], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file213, #file398], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file214, #file399], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file215, #file400], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file216, #file401], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file217, #file402], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file218, #file403], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file221, #file404], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file222, #file405], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file223, #file406], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file224, #file407], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file225, #file408], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file226, #file409], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file227, #file410], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file228, #file411], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file229, #file412], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file230, #file413], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file231, #file414], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file232, #file415], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file233, #file416], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file234, #file417], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file235, #file418], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file236, #file419], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 55]]]]]]]) +Backend time: 75.522 ms +Optimized script saved in: /tmp/pash_24zipanp/pash_c6tFPeVbLJ +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_24zipanp/pash_eRfY07g0hk +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_24zipanp/pash_c6tFPeVbLJ: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +rm -f "#file232" +rm -f "#file233" +rm -f "#file234" +rm -f "#file235" +rm -f "#file236" +rm -f "#file237" +rm -f "#file238" +rm -f "#file239" +rm -f "#file240" +rm -f "#file241" +rm -f "#file242" +rm -f "#file243" +rm -f "#file244" +rm -f "#file245" +rm -f "#file246" +rm -f "#file247" +rm -f "#file248" +rm -f "#file249" +rm -f "#file250" +rm -f "#file251" +rm -f "#file252" +rm -f "#file253" +rm -f "#file254" +rm -f "#file255" +rm -f "#file256" +rm -f "#file257" +rm -f "#file258" +rm -f "#file259" +rm -f "#file260" +rm -f "#file261" +rm -f "#file262" +rm -f "#file263" +rm -f "#file264" +rm -f "#file265" +rm -f "#file266" +rm -f "#file267" +rm -f "#file268" +rm -f "#file269" +rm -f "#file270" +rm -f "#file271" +rm -f "#file272" +rm -f "#file273" +rm -f "#file274" +rm -f "#file275" +rm -f "#file276" +rm -f "#file277" +rm -f "#file278" +rm -f "#file279" +rm -f "#file280" +rm -f "#file281" +rm -f "#file282" +rm -f "#file283" +rm -f "#file284" +rm -f "#file285" +rm -f "#file286" +rm -f "#file287" +rm -f "#file288" +rm -f "#file289" +rm -f "#file290" +rm -f "#file291" +rm -f "#file292" +rm -f "#file293" +rm -f "#file294" +rm -f "#file295" +rm -f "#file296" +rm -f "#file297" +rm -f "#file298" +rm -f "#file299" +rm -f "#file300" +rm -f "#file301" +rm -f "#file302" +rm -f "#file303" +rm -f "#file304" +rm -f "#file305" +rm -f "#file306" +rm -f "#file307" +rm -f "#file308" +rm -f "#file309" +rm -f "#file310" +rm -f "#file311" +rm -f "#file312" +rm -f "#file313" +rm -f "#file314" +rm -f "#file315" +rm -f "#file316" +rm -f "#file317" +rm -f "#file318" +rm -f "#file319" +rm -f "#file320" +rm -f "#file321" +rm -f "#file322" +rm -f "#file323" +rm -f "#file324" +rm -f "#file325" +rm -f "#file326" +rm -f "#file327" +rm -f "#file328" +rm -f "#file329" +rm -f "#file330" +rm -f "#file331" +rm -f "#file332" +rm -f "#file333" +rm -f "#file334" +rm -f "#file335" +rm -f "#file336" +rm -f "#file337" +rm -f "#file338" +rm -f "#file339" +rm -f "#file340" +rm -f "#file341" +rm -f "#file342" +rm -f "#file343" +rm -f "#file344" +rm -f "#file345" +rm -f "#file346" +rm -f "#file347" +rm -f "#file348" +rm -f "#file349" +rm -f "#file350" +rm -f "#file351" +rm -f "#file352" +rm -f "#file353" +rm -f "#file354" +rm -f "#file355" +rm -f "#file356" +rm -f "#file357" +rm -f "#file358" +rm -f "#file359" +rm -f "#file360" +rm -f "#file361" +rm -f "#file362" +rm -f "#file363" +rm -f "#file364" +rm -f "#file365" +rm -f "#file366" +rm -f "#file367" +rm -f "#file368" +rm -f "#file369" +rm -f "#file370" +rm -f "#file371" +rm -f "#file372" +rm -f "#file373" +rm -f "#file374" +rm -f "#file375" +rm -f "#file376" +rm -f "#file377" +rm -f "#file378" +rm -f "#file379" +rm -f "#file380" +rm -f "#file381" +rm -f "#file382" +rm -f "#file383" +rm -f "#file384" +rm -f "#file385" +rm -f "#file386" +rm -f "#file387" +rm -f "#file388" +rm -f "#file389" +rm -f "#file390" +rm -f "#file391" +rm -f "#file392" +rm -f "#file393" +rm -f "#file394" +rm -f "#file395" +rm -f "#file396" +rm -f "#file397" +rm -f "#file398" +rm -f "#file399" +rm -f "#file400" +rm -f "#file401" +rm -f "#file402" +rm -f "#file403" +rm -f "#file404" +rm -f "#file405" +rm -f "#file406" +rm -f "#file407" +rm -f "#file408" +rm -f "#file409" +rm -f "#file410" +rm -f "#file411" +rm -f "#file412" +rm -f "#file413" +rm -f "#file414" +rm -f "#file415" +rm -f "#file416" +rm -f "#file417" +rm -f "#file418" +rm -f "#file419" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +mkfifo "#file220" +mkfifo "#file221" +mkfifo "#file222" +mkfifo "#file223" +mkfifo "#file224" +mkfifo "#file225" +mkfifo "#file226" +mkfifo "#file227" +mkfifo "#file228" +mkfifo "#file229" +mkfifo "#file230" +mkfifo "#file231" +mkfifo "#file232" +mkfifo "#file233" +mkfifo "#file234" +mkfifo "#file235" +mkfifo "#file236" +mkfifo "#file237" +mkfifo "#file238" +mkfifo "#file239" +mkfifo "#file240" +mkfifo "#file241" +mkfifo "#file242" +mkfifo "#file243" +mkfifo "#file244" +mkfifo "#file245" +mkfifo "#file246" +mkfifo "#file247" +mkfifo "#file248" +mkfifo "#file249" +mkfifo "#file250" +mkfifo "#file251" +mkfifo "#file252" +mkfifo "#file253" +mkfifo "#file254" +mkfifo "#file255" +mkfifo "#file256" +mkfifo "#file257" +mkfifo "#file258" +mkfifo "#file259" +mkfifo "#file260" +mkfifo "#file261" +mkfifo "#file262" +mkfifo "#file263" +mkfifo "#file264" +mkfifo "#file265" +mkfifo "#file266" +mkfifo "#file267" +mkfifo "#file268" +mkfifo "#file269" +mkfifo "#file270" +mkfifo "#file271" +mkfifo "#file272" +mkfifo "#file273" +mkfifo "#file274" +mkfifo "#file275" +mkfifo "#file276" +mkfifo "#file277" +mkfifo "#file278" +mkfifo "#file279" +mkfifo "#file280" +mkfifo "#file281" +mkfifo "#file282" +mkfifo "#file283" +mkfifo "#file284" +mkfifo "#file285" +mkfifo "#file286" +mkfifo "#file287" +mkfifo "#file288" +mkfifo "#file289" +mkfifo "#file290" +mkfifo "#file291" +mkfifo "#file292" +mkfifo "#file293" +mkfifo "#file294" +mkfifo "#file295" +mkfifo "#file296" +mkfifo "#file297" +mkfifo "#file298" +mkfifo "#file299" +mkfifo "#file300" +mkfifo "#file301" +mkfifo "#file302" +mkfifo "#file303" +mkfifo "#file304" +mkfifo "#file305" +mkfifo "#file306" +mkfifo "#file307" +mkfifo "#file308" +mkfifo "#file309" +mkfifo "#file310" +mkfifo "#file311" +mkfifo "#file312" +mkfifo "#file313" +mkfifo "#file314" +mkfifo "#file315" +mkfifo "#file316" +mkfifo "#file317" +mkfifo "#file318" +mkfifo "#file319" +mkfifo "#file320" +mkfifo "#file321" +mkfifo "#file322" +mkfifo "#file323" +mkfifo "#file324" +mkfifo "#file325" +mkfifo "#file326" +mkfifo "#file327" +mkfifo "#file328" +mkfifo "#file329" +mkfifo "#file330" +mkfifo "#file331" +mkfifo "#file332" +mkfifo "#file333" +mkfifo "#file334" +mkfifo "#file335" +mkfifo "#file336" +mkfifo "#file337" +mkfifo "#file338" +mkfifo "#file339" +mkfifo "#file340" +mkfifo "#file341" +mkfifo "#file342" +mkfifo "#file343" +mkfifo "#file344" +mkfifo "#file345" +mkfifo "#file346" +mkfifo "#file347" +mkfifo "#file348" +mkfifo "#file349" +mkfifo "#file350" +mkfifo "#file351" +mkfifo "#file352" +mkfifo "#file353" +mkfifo "#file354" +mkfifo "#file355" +mkfifo "#file356" +mkfifo "#file357" +mkfifo "#file358" +mkfifo "#file359" +mkfifo "#file360" +mkfifo "#file361" +mkfifo "#file362" +mkfifo "#file363" +mkfifo "#file364" +mkfifo "#file365" +mkfifo "#file366" +mkfifo "#file367" +mkfifo "#file368" +mkfifo "#file369" +mkfifo "#file370" +mkfifo "#file371" +mkfifo "#file372" +mkfifo "#file373" +mkfifo "#file374" +mkfifo "#file375" +mkfifo "#file376" +mkfifo "#file377" +mkfifo "#file378" +mkfifo "#file379" +mkfifo "#file380" +mkfifo "#file381" +mkfifo "#file382" +mkfifo "#file383" +mkfifo "#file384" +mkfifo "#file385" +mkfifo "#file386" +mkfifo "#file387" +mkfifo "#file388" +mkfifo "#file389" +mkfifo "#file390" +mkfifo "#file391" +mkfifo "#file392" +mkfifo "#file393" +mkfifo "#file394" +mkfifo "#file395" +mkfifo "#file396" +mkfifo "#file397" +mkfifo "#file398" +mkfifo "#file399" +mkfifo "#file400" +mkfifo "#file401" +mkfifo "#file402" +mkfifo "#file403" +mkfifo "#file404" +mkfifo "#file405" +mkfifo "#file406" +mkfifo "#file407" +mkfifo "#file408" +mkfifo "#file409" +mkfifo "#file410" +mkfifo "#file411" +mkfifo "#file412" +mkfifo "#file413" +mkfifo "#file414" +mkfifo "#file415" +mkfifo "#file416" +mkfifo "#file417" +mkfifo "#file418" +mkfifo "#file419" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file19" "#file28" "#file29" "#file30" "#file31" "#file32" "#file33" "#file34" "#file35" "#file36" "#file37" "#file38" "#file39" "#file40" "#file41" "#file42" "#file43" & } +{ tr A-Z a-z <"#file239" >"#file45" & } +{ tr A-Z a-z <"#file240" >"#file46" & } +{ tr A-Z a-z <"#file241" >"#file47" & } +{ tr A-Z a-z <"#file242" >"#file48" & } +{ tr A-Z a-z <"#file243" >"#file49" & } +{ tr A-Z a-z <"#file244" >"#file50" & } +{ tr A-Z a-z <"#file245" >"#file51" & } +{ tr A-Z a-z <"#file246" >"#file52" & } +{ tr A-Z a-z <"#file247" >"#file53" & } +{ tr A-Z a-z <"#file248" >"#file54" & } +{ tr A-Z a-z <"#file249" >"#file55" & } +{ tr A-Z a-z <"#file250" >"#file56" & } +{ tr A-Z a-z <"#file251" >"#file57" & } +{ tr A-Z a-z <"#file252" >"#file58" & } +{ tr A-Z a-z <"#file253" >"#file59" & } +{ tr A-Z a-z <"#file43" >"#file60" & } +{ bigram_aux_map "#file45" "#file61" "#file62" "#file63" & } +{ bigram_aux_map "#file46" "#file64" "#file65" "#file66" & } +{ bigram_aux_map "#file47" "#file67" "#file68" "#file69" & } +{ bigram_aux_map "#file48" "#file70" "#file71" "#file72" & } +{ bigram_aux_map "#file49" "#file73" "#file74" "#file75" & } +{ bigram_aux_map "#file50" "#file76" "#file77" "#file78" & } +{ bigram_aux_map "#file51" "#file79" "#file80" "#file81" & } +{ bigram_aux_map "#file52" "#file82" "#file83" "#file84" & } +{ bigram_aux_map "#file53" "#file85" "#file86" "#file87" & } +{ bigram_aux_map "#file54" "#file88" "#file89" "#file90" & } +{ bigram_aux_map "#file55" "#file91" "#file92" "#file93" & } +{ bigram_aux_map "#file56" "#file94" "#file95" "#file96" & } +{ bigram_aux_map "#file57" "#file97" "#file98" "#file99" & } +{ bigram_aux_map "#file58" "#file100" "#file101" "#file102" & } +{ bigram_aux_map "#file59" "#file103" "#file104" "#file105" & } +{ bigram_aux_map "#file60" "#file106" "#file107" "#file108" & } +{ bigram_aux_reduce "#file254" "#file255" "#file256" "#file257" "#file258" "#file259" "#file109" "#file110" "#file111" & } +{ bigram_aux_reduce "#file260" "#file261" "#file262" "#file263" "#file264" "#file265" "#file112" "#file113" "#file114" & } +{ bigram_aux_reduce "#file266" "#file267" "#file268" "#file269" "#file270" "#file271" "#file115" "#file116" "#file117" & } +{ bigram_aux_reduce "#file272" "#file273" "#file274" "#file275" "#file276" "#file277" "#file118" "#file119" "#file120" & } +{ bigram_aux_reduce "#file278" "#file279" "#file280" "#file281" "#file282" "#file283" "#file121" "#file122" "#file123" & } +{ bigram_aux_reduce "#file284" "#file285" "#file286" "#file287" "#file288" "#file289" "#file124" "#file125" "#file126" & } +{ bigram_aux_reduce "#file290" "#file291" "#file292" "#file293" "#file294" "#file295" "#file127" "#file128" "#file129" & } +{ bigram_aux_reduce "#file296" "#file297" "#file298" "#file299" "#file300" "#file301" "#file130" "#file131" "#file132" & } +{ bigram_aux_reduce "#file302" "#file303" "#file304" "#file305" "#file306" "#file307" "#file133" "#file134" "#file135" & } +{ bigram_aux_reduce "#file308" "#file309" "#file310" "#file311" "#file312" "#file313" "#file136" "#file137" "#file138" & } +{ bigram_aux_reduce "#file314" "#file315" "#file316" "#file317" "#file318" "#file319" "#file139" "#file140" "#file141" & } +{ bigram_aux_reduce "#file320" "#file321" "#file322" "#file323" "#file324" "#file325" "#file142" "#file143" "#file144" & } +{ bigram_aux_reduce "#file326" "#file327" "#file328" "#file329" "#file330" "#file331" "#file145" "#file146" "#file147" & } +{ bigram_aux_reduce "#file332" "#file333" "#file334" "#file335" "#file336" "#file337" "#file148" "#file149" "#file150" & } +{ bigram_aux_reduce "#file338" "#file339" "#file340" "#file341" "#file342" "#file343" "#file23" "#file152" "#file153" & } +{ cat "#file152" >/dev/null & } +{ cat "#file153" >/dev/null & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file23" "#file156" "#file157" "#file158" "#file159" "#file160" "#file161" "#file162" "#file163" "#file164" "#file165" "#file166" "#file167" "#file168" "#file169" "#file170" "#file171" & } +{ sort <"#file344" >"#file173" & } +{ sort <"#file345" >"#file174" & } +{ sort <"#file346" >"#file175" & } +{ sort <"#file347" >"#file176" & } +{ sort <"#file348" >"#file177" & } +{ sort <"#file349" >"#file178" & } +{ sort <"#file350" >"#file179" & } +{ sort <"#file351" >"#file180" & } +{ sort <"#file352" >"#file181" & } +{ sort <"#file353" >"#file182" & } +{ sort <"#file354" >"#file183" & } +{ sort <"#file355" >"#file184" & } +{ sort <"#file356" >"#file185" & } +{ sort <"#file357" >"#file186" & } +{ sort <"#file358" >"#file187" & } +{ sort <"#file171" >"#file188" & } +{ sort -m "#file359" "#file360" >"#file189" & } +{ sort -m "#file361" "#file362" >"#file190" & } +{ sort -m "#file363" "#file364" >"#file191" & } +{ sort -m "#file365" "#file366" >"#file192" & } +{ sort -m "#file367" "#file368" >"#file193" & } +{ sort -m "#file369" "#file370" >"#file194" & } +{ sort -m "#file371" "#file372" >"#file195" & } +{ sort -m "#file373" "#file374" >"#file196" & } +{ sort -m "#file375" "#file376" >"#file197" & } +{ sort -m "#file377" "#file378" >"#file198" & } +{ sort -m "#file379" "#file380" >"#file199" & } +{ sort -m "#file381" "#file382" >"#file200" & } +{ sort -m "#file383" "#file384" >"#file201" & } +{ sort -m "#file385" "#file386" >"#file202" & } +{ sort -m "#file387" "#file388" >"#file25" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file25" "#file204" "#file205" "#file206" "#file207" "#file208" "#file209" "#file210" "#file211" "#file212" "#file213" "#file214" "#file215" "#file216" "#file217" "#file218" "#file219" & } +{ uniq <"#file389" >"#file221" & } +{ uniq <"#file390" >"#file222" & } +{ uniq <"#file391" >"#file223" & } +{ uniq <"#file392" >"#file224" & } +{ uniq <"#file393" >"#file225" & } +{ uniq <"#file394" >"#file226" & } +{ uniq <"#file395" >"#file227" & } +{ uniq <"#file396" >"#file228" & } +{ uniq <"#file397" >"#file229" & } +{ uniq <"#file398" >"#file230" & } +{ uniq <"#file399" >"#file231" & } +{ uniq <"#file400" >"#file232" & } +{ uniq <"#file401" >"#file233" & } +{ uniq <"#file402" >"#file234" & } +{ uniq <"#file403" >"#file235" & } +{ uniq <"#file219" >"#file236" & } +{ cat "#file404" "#file405" "#file406" "#file407" "#file408" "#file409" "#file410" "#file411" "#file412" "#file413" "#file414" "#file415" "#file416" "#file417" "#file418" "#file419" >"#file237" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file239" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file240" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file241" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file31" "#file242" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file32" "#file243" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file244" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file245" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file246" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file247" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file37" "#file248" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file249" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file250" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file251" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file252" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file253" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file61" "#file254" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file62" "#file255" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file256" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file257" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file258" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file259" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file260" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file68" "#file261" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file69" "#file262" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file70" "#file263" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file71" "#file264" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file72" "#file265" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file73" "#file266" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file74" "#file267" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file75" "#file268" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file76" "#file269" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file77" "#file270" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file271" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file272" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file273" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file274" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file275" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file276" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file277" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file278" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file86" "#file279" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file87" "#file280" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file281" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file282" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file283" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file284" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file285" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file93" "#file286" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file287" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file288" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file289" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file290" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file291" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file292" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file293" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file294" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file295" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file296" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file297" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file298" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file299" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file300" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file301" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file302" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file303" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file304" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file305" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file306" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file307" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file308" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file309" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file310" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file311" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file312" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file313" "/tmp/pash_eager_intermediate_#file75" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file314" "/tmp/pash_eager_intermediate_#file76" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file315" "/tmp/pash_eager_intermediate_#file77" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file316" "/tmp/pash_eager_intermediate_#file78" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file317" "/tmp/pash_eager_intermediate_#file79" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file318" "/tmp/pash_eager_intermediate_#file80" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file319" "/tmp/pash_eager_intermediate_#file81" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file320" "/tmp/pash_eager_intermediate_#file82" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file321" "/tmp/pash_eager_intermediate_#file83" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file322" "/tmp/pash_eager_intermediate_#file84" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file323" "/tmp/pash_eager_intermediate_#file85" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file324" "/tmp/pash_eager_intermediate_#file86" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file325" "/tmp/pash_eager_intermediate_#file87" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file326" "/tmp/pash_eager_intermediate_#file88" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file327" "/tmp/pash_eager_intermediate_#file89" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file328" "/tmp/pash_eager_intermediate_#file90" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file329" "/tmp/pash_eager_intermediate_#file91" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file330" "/tmp/pash_eager_intermediate_#file92" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file331" "/tmp/pash_eager_intermediate_#file93" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file332" "/tmp/pash_eager_intermediate_#file94" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file333" "/tmp/pash_eager_intermediate_#file95" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file141" "#file334" "/tmp/pash_eager_intermediate_#file96" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file142" "#file335" "/tmp/pash_eager_intermediate_#file97" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file143" "#file336" "/tmp/pash_eager_intermediate_#file98" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file144" "#file337" "/tmp/pash_eager_intermediate_#file99" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file145" "#file338" "/tmp/pash_eager_intermediate_#file100" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file146" "#file339" "/tmp/pash_eager_intermediate_#file101" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file147" "#file340" "/tmp/pash_eager_intermediate_#file102" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file148" "#file341" "/tmp/pash_eager_intermediate_#file103" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file149" "#file342" "/tmp/pash_eager_intermediate_#file104" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file150" "#file343" "/tmp/pash_eager_intermediate_#file105" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file156" "#file344" "/tmp/pash_eager_intermediate_#file106" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file157" "#file345" "/tmp/pash_eager_intermediate_#file107" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file158" "#file346" "/tmp/pash_eager_intermediate_#file108" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file159" "#file347" "/tmp/pash_eager_intermediate_#file109" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file160" "#file348" "/tmp/pash_eager_intermediate_#file110" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file161" "#file349" "/tmp/pash_eager_intermediate_#file111" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file162" "#file350" "/tmp/pash_eager_intermediate_#file112" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file163" "#file351" "/tmp/pash_eager_intermediate_#file113" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file164" "#file352" "/tmp/pash_eager_intermediate_#file114" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file165" "#file353" "/tmp/pash_eager_intermediate_#file115" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file166" "#file354" "/tmp/pash_eager_intermediate_#file116" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file167" "#file355" "/tmp/pash_eager_intermediate_#file117" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file168" "#file356" "/tmp/pash_eager_intermediate_#file118" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file169" "#file357" "/tmp/pash_eager_intermediate_#file119" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file170" "#file358" "/tmp/pash_eager_intermediate_#file120" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file173" "#file359" "/tmp/pash_eager_intermediate_#file121" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file174" "#file360" "/tmp/pash_eager_intermediate_#file122" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file175" "#file361" "/tmp/pash_eager_intermediate_#file123" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file176" "#file362" "/tmp/pash_eager_intermediate_#file124" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file177" "#file363" "/tmp/pash_eager_intermediate_#file125" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file178" "#file364" "/tmp/pash_eager_intermediate_#file126" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file179" "#file365" "/tmp/pash_eager_intermediate_#file127" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file180" "#file366" "/tmp/pash_eager_intermediate_#file128" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file181" "#file367" "/tmp/pash_eager_intermediate_#file129" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file182" "#file368" "/tmp/pash_eager_intermediate_#file130" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file183" "#file369" "/tmp/pash_eager_intermediate_#file131" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file184" "#file370" "/tmp/pash_eager_intermediate_#file132" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file185" "#file371" "/tmp/pash_eager_intermediate_#file133" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file186" "#file372" "/tmp/pash_eager_intermediate_#file134" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file187" "#file373" "/tmp/pash_eager_intermediate_#file135" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file188" "#file374" "/tmp/pash_eager_intermediate_#file136" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file189" "#file375" "/tmp/pash_eager_intermediate_#file137" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file190" "#file376" "/tmp/pash_eager_intermediate_#file138" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file191" "#file377" "/tmp/pash_eager_intermediate_#file139" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file192" "#file378" "/tmp/pash_eager_intermediate_#file140" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file193" "#file379" "/tmp/pash_eager_intermediate_#file141" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file194" "#file380" "/tmp/pash_eager_intermediate_#file142" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file195" "#file381" "/tmp/pash_eager_intermediate_#file143" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file196" "#file382" "/tmp/pash_eager_intermediate_#file144" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file197" "#file383" "/tmp/pash_eager_intermediate_#file145" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file198" "#file384" "/tmp/pash_eager_intermediate_#file146" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file199" "#file385" "/tmp/pash_eager_intermediate_#file147" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file200" "#file386" "/tmp/pash_eager_intermediate_#file148" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file201" "#file387" "/tmp/pash_eager_intermediate_#file149" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file202" "#file388" "/tmp/pash_eager_intermediate_#file150" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file204" "#file389" "/tmp/pash_eager_intermediate_#file151" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file205" "#file390" "/tmp/pash_eager_intermediate_#file152" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file206" "#file391" "/tmp/pash_eager_intermediate_#file153" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file207" "#file392" "/tmp/pash_eager_intermediate_#file154" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file208" "#file393" "/tmp/pash_eager_intermediate_#file155" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file209" "#file394" "/tmp/pash_eager_intermediate_#file156" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file210" "#file395" "/tmp/pash_eager_intermediate_#file157" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file211" "#file396" "/tmp/pash_eager_intermediate_#file158" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file212" "#file397" "/tmp/pash_eager_intermediate_#file159" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file213" "#file398" "/tmp/pash_eager_intermediate_#file160" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file214" "#file399" "/tmp/pash_eager_intermediate_#file161" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file215" "#file400" "/tmp/pash_eager_intermediate_#file162" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file216" "#file401" "/tmp/pash_eager_intermediate_#file163" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file217" "#file402" "/tmp/pash_eager_intermediate_#file164" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file218" "#file403" "/tmp/pash_eager_intermediate_#file165" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file221" "#file404" "/tmp/pash_eager_intermediate_#file166" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file222" "#file405" "/tmp/pash_eager_intermediate_#file167" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file223" "#file406" "/tmp/pash_eager_intermediate_#file168" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file224" "#file407" "/tmp/pash_eager_intermediate_#file169" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file225" "#file408" "/tmp/pash_eager_intermediate_#file170" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file226" "#file409" "/tmp/pash_eager_intermediate_#file171" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file227" "#file410" "/tmp/pash_eager_intermediate_#file172" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file228" "#file411" "/tmp/pash_eager_intermediate_#file173" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file229" "#file412" "/tmp/pash_eager_intermediate_#file174" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file230" "#file413" "/tmp/pash_eager_intermediate_#file175" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file231" "#file414" "/tmp/pash_eager_intermediate_#file176" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file232" "#file415" "/tmp/pash_eager_intermediate_#file177" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file233" "#file416" "/tmp/pash_eager_intermediate_#file178" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file234" "#file417" "/tmp/pash_eager_intermediate_#file179" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file235" "#file418" "/tmp/pash_eager_intermediate_#file180" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file236" "#file419" "/tmp/pash_eager_intermediate_#file181" & } +{ uniq <"#file237" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +rm -f "#file232" +rm -f "#file233" +rm -f "#file234" +rm -f "#file235" +rm -f "#file236" +rm -f "#file237" +rm -f "#file238" +rm -f "#file239" +rm -f "#file240" +rm -f "#file241" +rm -f "#file242" +rm -f "#file243" +rm -f "#file244" +rm -f "#file245" +rm -f "#file246" +rm -f "#file247" +rm -f "#file248" +rm -f "#file249" +rm -f "#file250" +rm -f "#file251" +rm -f "#file252" +rm -f "#file253" +rm -f "#file254" +rm -f "#file255" +rm -f "#file256" +rm -f "#file257" +rm -f "#file258" +rm -f "#file259" +rm -f "#file260" +rm -f "#file261" +rm -f "#file262" +rm -f "#file263" +rm -f "#file264" +rm -f "#file265" +rm -f "#file266" +rm -f "#file267" +rm -f "#file268" +rm -f "#file269" +rm -f "#file270" +rm -f "#file271" +rm -f "#file272" +rm -f "#file273" +rm -f "#file274" +rm -f "#file275" +rm -f "#file276" +rm -f "#file277" +rm -f "#file278" +rm -f "#file279" +rm -f "#file280" +rm -f "#file281" +rm -f "#file282" +rm -f "#file283" +rm -f "#file284" +rm -f "#file285" +rm -f "#file286" +rm -f "#file287" +rm -f "#file288" +rm -f "#file289" +rm -f "#file290" +rm -f "#file291" +rm -f "#file292" +rm -f "#file293" +rm -f "#file294" +rm -f "#file295" +rm -f "#file296" +rm -f "#file297" +rm -f "#file298" +rm -f "#file299" +rm -f "#file300" +rm -f "#file301" +rm -f "#file302" +rm -f "#file303" +rm -f "#file304" +rm -f "#file305" +rm -f "#file306" +rm -f "#file307" +rm -f "#file308" +rm -f "#file309" +rm -f "#file310" +rm -f "#file311" +rm -f "#file312" +rm -f "#file313" +rm -f "#file314" +rm -f "#file315" +rm -f "#file316" +rm -f "#file317" +rm -f "#file318" +rm -f "#file319" +rm -f "#file320" +rm -f "#file321" +rm -f "#file322" +rm -f "#file323" +rm -f "#file324" +rm -f "#file325" +rm -f "#file326" +rm -f "#file327" +rm -f "#file328" +rm -f "#file329" +rm -f "#file330" +rm -f "#file331" +rm -f "#file332" +rm -f "#file333" +rm -f "#file334" +rm -f "#file335" +rm -f "#file336" +rm -f "#file337" +rm -f "#file338" +rm -f "#file339" +rm -f "#file340" +rm -f "#file341" +rm -f "#file342" +rm -f "#file343" +rm -f "#file344" +rm -f "#file345" +rm -f "#file346" +rm -f "#file347" +rm -f "#file348" +rm -f "#file349" +rm -f "#file350" +rm -f "#file351" +rm -f "#file352" +rm -f "#file353" +rm -f "#file354" +rm -f "#file355" +rm -f "#file356" +rm -f "#file357" +rm -f "#file358" +rm -f "#file359" +rm -f "#file360" +rm -f "#file361" +rm -f "#file362" +rm -f "#file363" +rm -f "#file364" +rm -f "#file365" +rm -f "#file366" +rm -f "#file367" +rm -f "#file368" +rm -f "#file369" +rm -f "#file370" +rm -f "#file371" +rm -f "#file372" +rm -f "#file373" +rm -f "#file374" +rm -f "#file375" +rm -f "#file376" +rm -f "#file377" +rm -f "#file378" +rm -f "#file379" +rm -f "#file380" +rm -f "#file381" +rm -f "#file382" +rm -f "#file383" +rm -f "#file384" +rm -f "#file385" +rm -f "#file386" +rm -f "#file387" +rm -f "#file388" +rm -f "#file389" +rm -f "#file390" +rm -f "#file391" +rm -f "#file392" +rm -f "#file393" +rm -f "#file394" +rm -f "#file395" +rm -f "#file396" +rm -f "#file397" +rm -f "#file398" +rm -f "#file399" +rm -f "#file400" +rm -f "#file401" +rm -f "#file402" +rm -f "#file403" +rm -f "#file404" +rm -f "#file405" +rm -f "#file406" +rm -f "#file407" +rm -f "#file408" +rm -f "#file409" +rm -f "#file410" +rm -f "#file411" +rm -f "#file412" +rm -f "#file413" +rm -f "#file414" +rm -f "#file415" +rm -f "#file416" +rm -f "#file417" +rm -f "#file418" +rm -f "#file419"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_24zipanp/pash_76xf9Mg88X +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_24zipanp/pash_S58JpPfjiH +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 14115.418 ms +(7) Recovering BaSh variables from: /tmp/pash_24zipanp/pash_S58JpPfjiH +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_24zipanp/pash_76xf9Mg88X +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_24zipanp/tmp_sq8sakc +Preprocessing time: 4.966 ms + +real 0m14.516s +user 1m9.863s +sys 0m15.316s +Files /home/ubuntu/pash/evaluation//small_intermediary//bigrams_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_2_distr.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_2_distr.time new file mode 100644 index 000000000..74310d34e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_2_distr.time @@ -0,0 +1,100 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_0itaOez5WE +(1) Bash variables saved in: /tmp/pash_0itaOez5WE +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: bigrams_aux +|-- (['stdin'], ['stdout'], []) +class: pure found for: bigrams_aux +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Compilation time: 39.018 ms +Total nodes after optimization: 6 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.341 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: bigrams_aux +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +Backend time: 9.812 ms +Optimized script saved in: /tmp/pash_MC2plouRM3 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_0itaOez5WE +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_MC2plouRM3: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ bigrams_aux <"#file7" >"#file9" & } +{ sort <"#file9" >"#file11" & } +{ uniq <"#file11" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (5062) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_BP9h04ZRfi +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_QrAqPebl3n +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 71392.607 ms +(7) Recovering BaSh variables from: /tmp/pash_QrAqPebl3n +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_BP9h04ZRfi +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_jbnifflq +Preprocessing time: 27.941 ms + +real 1m11.844s +user 1m16.204s +sys 0m6.329s +Files /home/nikos/dish/evaluation//small_intermediary//bigrams_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_2_distr_auto_split.time new file mode 100644 index 000000000..5df0142c0 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_2_distr_auto_split.time @@ -0,0 +1,296 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_dmqc8zjd/pash_KYkpAOlri8 +(1) Bash variables saved in: /tmp/pash_dmqc8zjd/pash_KYkpAOlri8 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_dmqc8zjd/tmp2qpamq9v ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: bigrams_aux +|-- (['stdin'], ['stdout'], []) +class: pure found for: bigrams_aux +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Compilation time: 10.338 ms +Total nodes after optimization: 32 + -- out of which: +Cat nodes: 4 +Eager nodes: 13 +Optimization time: 2.569 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file5, #file14, #file15], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: bigram_aux_map +|-- ([#file17, #file19, #file20, #file21], []) +arguments, redirs found for: bigram_aux_map +|-- ([#file18, #file22, #file23, #file24], []) +arguments, redirs found for: bigram_aux_reduce +|-- ([#file44, #file45, #file46, #file47, #file48, #file49, #file9, #file26, #file27], []) +arguments, redirs found for: cat +|-- ([#file26], [['File', ['To', 1, [['C', 47], ['C', 100], ['C', 101], ['C', 118], ['C', 47], ['C', 110], ['C', 117], ['C', 108], ['C', 108]]]]]) +arguments, redirs found for: cat +|-- ([#file27], [['File', ['To', 1, [['C', 47], ['C', 100], ['C', 101], ['C', 118], ['C', 47], ['C', 110], ['C', 117], ['C', 108], ['C', 108]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file9, #file30, #file31], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file51, #file52], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file11, #file36, #file37], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: cat +|-- ([#file54, #file55], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file14, #file43], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file19, #file44], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file20, #file45], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file21, #file46], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file22, #file47], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file23, #file48], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file24, #file49], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file50], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file51], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file52], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file53], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file54], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file55], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +Backend time: 6.952 ms +Optimized script saved in: /tmp/pash_dmqc8zjd/pash_FqSzh6bzc6 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_dmqc8zjd/pash_KYkpAOlri8 +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_dmqc8zjd/pash_FqSzh6bzc6: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file14" +mkfifo "#file15" +mkfifo "#file16" +mkfifo "#file17" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file5" "#file14" "#file15" & } +{ tr A-Z a-z <"#file43" >"#file17" & } +{ tr A-Z a-z <"#file15" >"#file18" & } +{ bigram_aux_map "#file17" "#file19" "#file20" "#file21" & } +{ bigram_aux_map "#file18" "#file22" "#file23" "#file24" & } +{ bigram_aux_reduce "#file44" "#file45" "#file46" "#file47" "#file48" "#file49" "#file9" "#file26" "#file27" & } +{ cat "#file26" >/dev/null & } +{ cat "#file27" >/dev/null & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file9" "#file30" "#file31" & } +{ sort <"#file50" >"#file33" & } +{ sort <"#file31" >"#file34" & } +{ sort -m "#file51" "#file52" >"#file11" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file11" "#file36" "#file37" & } +{ uniq <"#file53" >"#file39" & } +{ uniq <"#file37" >"#file40" & } +{ cat "#file54" "#file55" >"#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file14" "#file43" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file19" "#file44" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file20" "#file45" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file21" "#file46" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file22" "#file47" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file23" "#file48" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file24" "#file49" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file50" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file51" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file52" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file53" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file54" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file55" "/tmp/pash_eager_intermediate_#file13" & } +{ uniq <"#file41" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_dmqc8zjd/pash_9hNxQHxBwD +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_dmqc8zjd/pash_0a3A9i5z0D +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 18990.200 ms +(7) Recovering BaSh variables from: /tmp/pash_dmqc8zjd/pash_0a3A9i5z0D +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_dmqc8zjd/pash_9hNxQHxBwD +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_dmqc8zjd/tmpies2hv35 +Preprocessing time: 4.984 ms + +real 0m19.248s +user 0m35.882s +sys 0m7.495s +Files /home/ubuntu/pash/evaluation//small_intermediary//bigrams_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_2_seq.time new file mode 100644 index 000000000..4dfeb0867 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/bigrams_2_seq.time @@ -0,0 +1,4 @@ + +real 0m28.505s +user 0m30.426s +sys 0m2.235s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_16_distr_auto_split.time new file mode 100644 index 000000000..bf44ade68 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_16_distr_auto_split.time @@ -0,0 +1,1122 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_2h92s5qq/pash_6BIfGPW8uC +(1) Bash variables saved in: /tmp/pash_2h92s5qq/pash_6BIfGPW8uC +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_2h92s5qq/tmpt2ly3ce5 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.181 ms +Optimization time: 0.001 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_2h92s5qq/pash_6BIfGPW8uC +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_2h92s5qq/tmpdmcm7o6s: +mkfifo s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_2h92s5qq/pash_yqYbsqPEx2 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_2h92s5qq/pash_ube4R1GSh2 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 21.788 ms +(7) Recovering BaSh variables from: /tmp/pash_2h92s5qq/pash_ube4R1GSh2 +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_2h92s5qq/pash_yqYbsqPEx2 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_2h92s5qq/pash_ow1S6DhAjL +(1) Bash variables saved in: /tmp/pash_2h92s5qq/pash_ow1S6DhAjL +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_2h92s5qq/tmpdvij66pc ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 140.198 ms +Total nodes after optimization: 157 + -- out of which: +Cat nodes: 0 +Eager nodes: 62 +Optimization time: 8.045 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file140, #file141], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file158, #file159], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file160, #file161], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file162, #file163], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file156, #file157], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file154, #file155], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file194, #file195], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file196, #file197], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file142, #file143], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file144, #file145], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file146, #file147], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file148, #file149], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file150, #file151], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file152, #file153], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file192, #file193], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file198, #file199], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file140], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file141], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file142], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file93, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file86, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file87, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:43:s1, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:44:s2, #file201], []) +arguments, redirs found for: diff +|-- ([#file200, #file201], []) +Backend time: 42.43 ms +Optimized script saved in: /tmp/pash_2h92s5qq/pash_4hTSDDcy2B +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_2h92s5qq/pash_ow1S6DhAjL +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_2h92s5qq/pash_4hTSDDcy2B: +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file38" +mkfifo "#file40" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +{ tr [:lower:] [:upper:] "#file46" & } +{ tr [:lower:] [:upper:] "#file47" & } +{ tr [:lower:] [:upper:] "#file48" & } +{ tr [:lower:] [:upper:] "#file49" & } +{ tr [:lower:] [:upper:] "#file50" & } +{ tr [:lower:] [:upper:] "#file51" & } +{ tr [:lower:] [:upper:] "#file52" & } +{ tr [:lower:] [:upper:] "#file53" & } +{ tr [:lower:] [:upper:] "#file54" & } +{ tr [:lower:] [:upper:] "#file55" & } +{ tr [:lower:] [:upper:] "#file56" & } +{ tr [:lower:] [:upper:] "#file57" & } +{ tr [:lower:] [:upper:] "#file58" & } +{ tr [:lower:] [:upper:] "#file59" & } +{ tr [:lower:] [:upper:] "#file60" & } +{ tr [:lower:] [:upper:] "#file61" & } +{ tr [:upper:] [:lower:] "#file62" & } +{ tr [:upper:] [:lower:] "#file63" & } +{ tr [:upper:] [:lower:] "#file64" & } +{ tr [:upper:] [:lower:] "#file65" & } +{ tr [:upper:] [:lower:] "#file66" & } +{ tr [:upper:] [:lower:] "#file67" & } +{ tr [:upper:] [:lower:] "#file68" & } +{ tr [:upper:] [:lower:] "#file69" & } +{ tr [:upper:] [:lower:] "#file70" & } +{ tr [:upper:] [:lower:] "#file71" & } +{ tr [:upper:] [:lower:] "#file72" & } +{ tr [:upper:] [:lower:] "#file73" & } +{ tr [:upper:] [:lower:] "#file74" & } +{ tr [:upper:] [:lower:] "#file75" & } +{ tr [:upper:] [:lower:] "#file76" & } +{ tr [:upper:] [:lower:] "#file77" & } +{ sort <"#file46" >"#file78" & } +{ sort <"#file47" >"#file79" & } +{ sort <"#file48" >"#file80" & } +{ sort <"#file49" >"#file81" & } +{ sort <"#file50" >"#file82" & } +{ sort <"#file51" >"#file83" & } +{ sort <"#file52" >"#file84" & } +{ sort <"#file53" >"#file85" & } +{ sort <"#file54" >"#file86" & } +{ sort <"#file55" >"#file87" & } +{ sort <"#file56" >"#file88" & } +{ sort <"#file57" >"#file89" & } +{ sort <"#file58" >"#file90" & } +{ sort <"#file59" >"#file91" & } +{ sort <"#file60" >"#file92" & } +{ sort <"#file61" >"#file93" & } +{ sort -m "#file140" "#file141" >"#file94" & } +{ sort -m "#file158" "#file159" >"#file95" & } +{ sort -m "#file160" "#file161" >"#file96" & } +{ sort -m "#file162" "#file163" >"#file97" & } +{ sort -m "#file164" "#file165" >"#file98" & } +{ sort -m "#file166" "#file167" >"#file99" & } +{ sort -m "#file156" "#file157" >"#file100" & } +{ sort -m "#file154" "#file155" >"#file101" & } +{ sort -m "#file172" "#file173" >"#file102" & } +{ sort -m "#file184" "#file185" >"#file103" & } +{ sort -m "#file186" "#file187" >"#file104" & } +{ sort -m "#file182" "#file183" >"#file105" & } +{ sort -m "#file188" "#file189" >"#file106" & } +{ sort -m "#file194" "#file195" >"#file107" & } +{ sort -m "#file196" "#file197" >s1 & } +{ sort <"#file62" >"#file109" & } +{ sort <"#file63" >"#file110" & } +{ sort <"#file64" >"#file111" & } +{ sort <"#file65" >"#file112" & } +{ sort <"#file66" >"#file113" & } +{ sort <"#file67" >"#file114" & } +{ sort <"#file68" >"#file115" & } +{ sort <"#file69" >"#file116" & } +{ sort <"#file70" >"#file117" & } +{ sort <"#file71" >"#file118" & } +{ sort <"#file72" >"#file119" & } +{ sort <"#file73" >"#file120" & } +{ sort <"#file74" >"#file121" & } +{ sort <"#file75" >"#file122" & } +{ sort <"#file76" >"#file123" & } +{ sort <"#file77" >"#file124" & } +{ sort -m "#file168" "#file169" >"#file125" & } +{ sort -m "#file142" "#file143" >"#file126" & } +{ sort -m "#file144" "#file145" >"#file127" & } +{ sort -m "#file146" "#file147" >"#file128" & } +{ sort -m "#file148" "#file149" >"#file129" & } +{ sort -m "#file150" "#file151" >"#file130" & } +{ sort -m "#file170" "#file171" >"#file131" & } +{ sort -m "#file152" "#file153" >"#file132" & } +{ sort -m "#file174" "#file175" >"#file133" & } +{ sort -m "#file176" "#file177" >"#file134" & } +{ sort -m "#file178" "#file179" >"#file135" & } +{ sort -m "#file180" "#file181" >"#file136" & } +{ sort -m "#file190" "#file191" >"#file137" & } +{ sort -m "#file192" "#file193" >"#file138" & } +{ sort -m "#file198" "#file199" >s2 & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file140" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file141" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file142" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file143" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file144" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file145" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file146" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file147" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file148" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file149" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file150" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file151" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file152" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file153" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file154" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file93" "#file155" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file156" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file157" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file158" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file159" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file160" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file161" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file162" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file163" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file86" "#file164" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file87" "#file165" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file166" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file167" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file168" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file169" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file170" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file171" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file172" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file173" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file174" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file175" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file176" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file177" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file178" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file179" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file180" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file181" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file182" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file183" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file184" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file185" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file186" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file187" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file188" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file189" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file190" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file191" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file192" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file193" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file194" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file195" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file196" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file197" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file198" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file199" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh s1 "#file200" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh s2 "#file201" "/tmp/pash_eager_intermediate_#file62" & } +{ diff -B "#file200" "#file201" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201"diff: memory exhausted +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_2h92s5qq/pash_RYTn2k7rQR +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_2h92s5qq/pash_nNHtsrS1we +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 82035.685 ms +(7) Recovering BaSh variables from: /tmp/pash_2h92s5qq/pash_nNHtsrS1we +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_2h92s5qq/pash_RYTn2k7rQR +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_2h92s5qq/pash_KOKYglnvmQ +(1) Bash variables saved in: /tmp/pash_2h92s5qq/pash_KOKYglnvmQ +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_2h92s5qq/tmpts_et6ee ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.179 ms +Optimization time: 0.001 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_2h92s5qq/pash_KOKYglnvmQ +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_2h92s5qq/tmpw2da7aer: +rm s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_2h92s5qq/pash_bPAerpXDWm +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_2h92s5qq/pash_1vnmxXwZsV +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 21.417 ms +(7) Recovering BaSh variables from: /tmp/pash_2h92s5qq/pash_1vnmxXwZsV +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_2h92s5qq/pash_bPAerpXDWm +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_2h92s5qq/tmp_9p6cck1 +Preprocessing time: 6.298 ms + +real 1m22.841s +user 3m12.384s +sys 0m54.041s +Files /home/ubuntu/pash/evaluation//small_intermediary//diff_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_16_distr_no_eager.time new file mode 100644 index 000000000..689a22eb3 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_16_distr_no_eager.time @@ -0,0 +1,753 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_D1Vi1ONZhN +(1) Bash variables saved in: /tmp/pash_D1Vi1ONZhN +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.227 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_D1Vi1ONZhN +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hdjpqrzz: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_9ihX2rvZ9A +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_wGUtCU1eqN +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 46.405 ms +(7) Recovering BaSh variables from: /tmp/pash_wGUtCU1eqN +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_9ihX2rvZ9A +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_83S9RsOZPO +(1) Bash variables saved in: /tmp/pash_83S9RsOZPO +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 561.391 ms +Total nodes after optimization: 95 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 15.989 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file78, #file79], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file80, #file81], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file82, #file83], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file84, #file85], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file86, #file87], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file88, #file89], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file90, #file91], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file92, #file93], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file94, #file95], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file96, #file97], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file98, #file99], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file100, #file101], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file102, #file103], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file104, #file105], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file106, #file107], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file109, #file110], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file111, #file112], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file113, #file114], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file115, #file116], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file117, #file118], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file119, #file120], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file121, #file122], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file123, #file124], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file125, #file126], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file127, #file128], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file129, #file130], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file131, #file132], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file133, #file134], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file135, #file136], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file137, #file138], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: diff +|-- ([fid:43:s1, fid:44:s2], []) +Backend time: 49.618 ms +Optimized script saved in: /tmp/pash_UtqEHQgJM2 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_83S9RsOZPO +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_UtqEHQgJM2: +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file38" +mkfifo "#file40" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +{ tr [:lower:] [:upper:] "#file46" & } +{ tr [:lower:] [:upper:] "#file47" & } +{ tr [:lower:] [:upper:] "#file48" & } +{ tr [:lower:] [:upper:] "#file49" & } +{ tr [:lower:] [:upper:] "#file50" & } +{ tr [:lower:] [:upper:] "#file51" & } +{ tr [:lower:] [:upper:] "#file52" & } +{ tr [:lower:] [:upper:] "#file53" & } +{ tr [:lower:] [:upper:] "#file54" & } +{ tr [:lower:] [:upper:] "#file55" & } +{ tr [:lower:] [:upper:] "#file56" & } +{ tr [:lower:] [:upper:] "#file57" & } +{ tr [:lower:] [:upper:] "#file58" & } +{ tr [:lower:] [:upper:] "#file59" & } +{ tr [:lower:] [:upper:] "#file60" & } +{ tr [:lower:] [:upper:] "#file61" & } +{ tr [:upper:] [:lower:] "#file62" & } +{ tr [:upper:] [:lower:] "#file63" & } +{ tr [:upper:] [:lower:] "#file64" & } +{ tr [:upper:] [:lower:] "#file65" & } +{ tr [:upper:] [:lower:] "#file66" & } +{ tr [:upper:] [:lower:] "#file67" & } +{ tr [:upper:] [:lower:] "#file68" & } +{ tr [:upper:] [:lower:] "#file69" & } +{ tr [:upper:] [:lower:] "#file70" & } +{ tr [:upper:] [:lower:] "#file71" & } +{ tr [:upper:] [:lower:] "#file72" & } +{ tr [:upper:] [:lower:] "#file73" & } +{ tr [:upper:] [:lower:] "#file74" & } +{ tr [:upper:] [:lower:] "#file75" & } +{ tr [:upper:] [:lower:] "#file76" & } +{ tr [:upper:] [:lower:] "#file77" & } +{ sort <"#file46" >"#file78" & } +{ sort <"#file47" >"#file79" & } +{ sort <"#file48" >"#file80" & } +{ sort <"#file49" >"#file81" & } +{ sort <"#file50" >"#file82" & } +{ sort <"#file51" >"#file83" & } +{ sort <"#file52" >"#file84" & } +{ sort <"#file53" >"#file85" & } +{ sort <"#file54" >"#file86" & } +{ sort <"#file55" >"#file87" & } +{ sort <"#file56" >"#file88" & } +{ sort <"#file57" >"#file89" & } +{ sort <"#file58" >"#file90" & } +{ sort <"#file59" >"#file91" & } +{ sort <"#file60" >"#file92" & } +{ sort <"#file61" >"#file93" & } +{ sort -m "#file78" "#file79" >"#file94" & } +{ sort -m "#file80" "#file81" >"#file95" & } +{ sort -m "#file82" "#file83" >"#file96" & } +{ sort -m "#file84" "#file85" >"#file97" & } +{ sort -m "#file86" "#file87" >"#file98" & } +{ sort -m "#file88" "#file89" >"#file99" & } +{ sort -m "#file90" "#file91" >"#file100" & } +{ sort -m "#file92" "#file93" >"#file101" & } +{ sort -m "#file94" "#file95" >"#file102" & } +{ sort -m "#file96" "#file97" >"#file103" & } +{ sort -m "#file98" "#file99" >"#file104" & } +{ sort -m "#file100" "#file101" >"#file105" & } +{ sort -m "#file102" "#file103" >"#file106" & } +{ sort -m "#file104" "#file105" >"#file107" & } +{ sort -m "#file106" "#file107" >s1 & } +{ sort <"#file62" >"#file109" & } +{ sort <"#file63" >"#file110" & } +{ sort <"#file64" >"#file111" & } +{ sort <"#file65" >"#file112" & } +{ sort <"#file66" >"#file113" & } +{ sort <"#file67" >"#file114" & } +{ sort <"#file68" >"#file115" & } +{ sort <"#file69" >"#file116" & } +{ sort <"#file70" >"#file117" & } +{ sort <"#file71" >"#file118" & } +{ sort <"#file72" >"#file119" & } +{ sort <"#file73" >"#file120" & } +{ sort <"#file74" >"#file121" & } +{ sort <"#file75" >"#file122" & } +{ sort <"#file76" >"#file123" & } +{ sort <"#file77" >"#file124" & } +{ sort -m "#file109" "#file110" >"#file125" & } +{ sort -m "#file111" "#file112" >"#file126" & } +{ sort -m "#file113" "#file114" >"#file127" & } +{ sort -m "#file115" "#file116" >"#file128" & } +{ sort -m "#file117" "#file118" >"#file129" & } +{ sort -m "#file119" "#file120" >"#file130" & } +{ sort -m "#file121" "#file122" >"#file131" & } +{ sort -m "#file123" "#file124" >"#file132" & } +{ sort -m "#file125" "#file126" >"#file133" & } +{ sort -m "#file127" "#file128" >"#file134" & } +{ sort -m "#file129" "#file130" >"#file135" & } +{ sort -m "#file131" "#file132" >"#file136" & } +{ sort -m "#file133" "#file134" >"#file137" & } +{ sort -m "#file135" "#file136" >"#file138" & } +{ sort -m "#file137" "#file138" >s2 & } +{ diff -B s1 s2 & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (1689) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_NkMSYDe727 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_5MxzWUeJZl +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 73850.777 ms +(7) Recovering BaSh variables from: /tmp/pash_5MxzWUeJZl +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_NkMSYDe727 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_Bsjaq9uZkY +(1) Bash variables saved in: /tmp/pash_Bsjaq9uZkY +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.209 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_Bsjaq9uZkY +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_zuyievhe: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_bLUm4YIR7w +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_aJWrNTix3l +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 49.268 ms +(7) Recovering BaSh variables from: /tmp/pash_aJWrNTix3l +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_bLUm4YIR7w +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_vusolszp +Preprocessing time: 40.775 ms + +real 1m15.421s +user 5m56.659s +sys 0m42.361s +Files /home/nikos/dish/evaluation//small_intermediary//diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..fbb4275fc --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_16_distr_no_task_par_eager.time @@ -0,0 +1,1125 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_opjhFRwuJJ +(1) Bash variables saved in: /tmp/pash_opjhFRwuJJ +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.227 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_opjhFRwuJJ +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_lganzlju: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_wp17s9RYkq +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_39AhUnkZwB +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 51.023 ms +(7) Recovering BaSh variables from: /tmp/pash_39AhUnkZwB +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_wp17s9RYkq +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_HlbYN7qPPt +(1) Bash variables saved in: /tmp/pash_HlbYN7qPPt +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 595.561 ms +Total nodes after optimization: 157 + -- out of which: +Cat nodes: 0 +Eager nodes: 62 +Optimization time: 19.192 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file142, #file143], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file144, #file145], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file140, #file141], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file146, #file147], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file148, #file149], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file150, #file151], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file154, #file155], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file156, #file157], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file196, #file197], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file152, #file153], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file158, #file159], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file160, #file161], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file162, #file163], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file192, #file193], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file194, #file195], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file198, #file199], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file82, #file140], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file83, #file141], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file78, #file142], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file79, #file143], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file80, #file144], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file81, #file145], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file84, #file146], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file85, #file147], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file86, #file148], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file87, #file149], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file88, #file150], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file89, #file151], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file109, #file152], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file110, #file153], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file90, #file154], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file91, #file155], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file92, #file156], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file93, #file157], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file111, #file158], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file112, #file159], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file113, #file160], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file114, #file161], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file115, #file162], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file116, #file163], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file117, #file164], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file118, #file165], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file119, #file166], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file120, #file167], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file121, #file168], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file122, #file169], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file123, #file170], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file124, #file171], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file96, #file172], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file97, #file173], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file94, #file174], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file95, #file175], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file98, #file176], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file99, #file177], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file125, #file178], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file126, #file179], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file100, #file180], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file101, #file181], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file127, #file182], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file128, #file183], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file129, #file184], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file130, #file185], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file131, #file186], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file132, #file187], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file102, #file188], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file103, #file189], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file104, #file190], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file105, #file191], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file133, #file192], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file134, #file193], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file135, #file194], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file136, #file195], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file106, #file196], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file107, #file197], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file137, #file198], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file138, #file199], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:43:s1, #file200], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:44:s2, #file201], []) +arguments, redirs found for: diff +|-- ([#file200, #file201], []) +Backend time: 75.591 ms +Optimized script saved in: /tmp/pash_eehCbjz0Ox +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_HlbYN7qPPt +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_eehCbjz0Ox: +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file38" +mkfifo "#file40" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +{ tr [:lower:] [:upper:] "#file46" & } +{ tr [:lower:] [:upper:] "#file47" & } +{ tr [:lower:] [:upper:] "#file48" & } +{ tr [:lower:] [:upper:] "#file49" & } +{ tr [:lower:] [:upper:] "#file50" & } +{ tr [:lower:] [:upper:] "#file51" & } +{ tr [:lower:] [:upper:] "#file52" & } +{ tr [:lower:] [:upper:] "#file53" & } +{ tr [:lower:] [:upper:] "#file54" & } +{ tr [:lower:] [:upper:] "#file55" & } +{ tr [:lower:] [:upper:] "#file56" & } +{ tr [:lower:] [:upper:] "#file57" & } +{ tr [:lower:] [:upper:] "#file58" & } +{ tr [:lower:] [:upper:] "#file59" & } +{ tr [:lower:] [:upper:] "#file60" & } +{ tr [:lower:] [:upper:] "#file61" & } +{ tr [:upper:] [:lower:] "#file62" & } +{ tr [:upper:] [:lower:] "#file63" & } +{ tr [:upper:] [:lower:] "#file64" & } +{ tr [:upper:] [:lower:] "#file65" & } +{ tr [:upper:] [:lower:] "#file66" & } +{ tr [:upper:] [:lower:] "#file67" & } +{ tr [:upper:] [:lower:] "#file68" & } +{ tr [:upper:] [:lower:] "#file69" & } +{ tr [:upper:] [:lower:] "#file70" & } +{ tr [:upper:] [:lower:] "#file71" & } +{ tr [:upper:] [:lower:] "#file72" & } +{ tr [:upper:] [:lower:] "#file73" & } +{ tr [:upper:] [:lower:] "#file74" & } +{ tr [:upper:] [:lower:] "#file75" & } +{ tr [:upper:] [:lower:] "#file76" & } +{ tr [:upper:] [:lower:] "#file77" & } +{ sort <"#file46" >"#file78" & } +{ sort <"#file47" >"#file79" & } +{ sort <"#file48" >"#file80" & } +{ sort <"#file49" >"#file81" & } +{ sort <"#file50" >"#file82" & } +{ sort <"#file51" >"#file83" & } +{ sort <"#file52" >"#file84" & } +{ sort <"#file53" >"#file85" & } +{ sort <"#file54" >"#file86" & } +{ sort <"#file55" >"#file87" & } +{ sort <"#file56" >"#file88" & } +{ sort <"#file57" >"#file89" & } +{ sort <"#file58" >"#file90" & } +{ sort <"#file59" >"#file91" & } +{ sort <"#file60" >"#file92" & } +{ sort <"#file61" >"#file93" & } +{ sort -m "#file142" "#file143" >"#file94" & } +{ sort -m "#file144" "#file145" >"#file95" & } +{ sort -m "#file140" "#file141" >"#file96" & } +{ sort -m "#file146" "#file147" >"#file97" & } +{ sort -m "#file148" "#file149" >"#file98" & } +{ sort -m "#file150" "#file151" >"#file99" & } +{ sort -m "#file154" "#file155" >"#file100" & } +{ sort -m "#file156" "#file157" >"#file101" & } +{ sort -m "#file174" "#file175" >"#file102" & } +{ sort -m "#file172" "#file173" >"#file103" & } +{ sort -m "#file176" "#file177" >"#file104" & } +{ sort -m "#file180" "#file181" >"#file105" & } +{ sort -m "#file188" "#file189" >"#file106" & } +{ sort -m "#file190" "#file191" >"#file107" & } +{ sort -m "#file196" "#file197" >s1 & } +{ sort <"#file62" >"#file109" & } +{ sort <"#file63" >"#file110" & } +{ sort <"#file64" >"#file111" & } +{ sort <"#file65" >"#file112" & } +{ sort <"#file66" >"#file113" & } +{ sort <"#file67" >"#file114" & } +{ sort <"#file68" >"#file115" & } +{ sort <"#file69" >"#file116" & } +{ sort <"#file70" >"#file117" & } +{ sort <"#file71" >"#file118" & } +{ sort <"#file72" >"#file119" & } +{ sort <"#file73" >"#file120" & } +{ sort <"#file74" >"#file121" & } +{ sort <"#file75" >"#file122" & } +{ sort <"#file76" >"#file123" & } +{ sort <"#file77" >"#file124" & } +{ sort -m "#file152" "#file153" >"#file125" & } +{ sort -m "#file158" "#file159" >"#file126" & } +{ sort -m "#file160" "#file161" >"#file127" & } +{ sort -m "#file162" "#file163" >"#file128" & } +{ sort -m "#file164" "#file165" >"#file129" & } +{ sort -m "#file166" "#file167" >"#file130" & } +{ sort -m "#file168" "#file169" >"#file131" & } +{ sort -m "#file170" "#file171" >"#file132" & } +{ sort -m "#file178" "#file179" >"#file133" & } +{ sort -m "#file182" "#file183" >"#file134" & } +{ sort -m "#file184" "#file185" >"#file135" & } +{ sort -m "#file186" "#file187" >"#file136" & } +{ sort -m "#file192" "#file193" >"#file137" & } +{ sort -m "#file194" "#file195" >"#file138" & } +{ sort -m "#file198" "#file199" >s2 & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file82" "#file140" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file83" "#file141" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file78" "#file142" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file79" "#file143" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file80" "#file144" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file81" "#file145" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file84" "#file146" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file85" "#file147" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file86" "#file148" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file87" "#file149" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file88" "#file150" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file89" "#file151" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file109" "#file152" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file110" "#file153" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file90" "#file154" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file91" "#file155" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file92" "#file156" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file93" "#file157" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file111" "#file158" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file112" "#file159" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file113" "#file160" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file114" "#file161" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file115" "#file162" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file116" "#file163" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file117" "#file164" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file118" "#file165" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file119" "#file166" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file120" "#file167" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file121" "#file168" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file122" "#file169" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file123" "#file170" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file124" "#file171" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file96" "#file172" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file97" "#file173" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file94" "#file174" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file95" "#file175" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file98" "#file176" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file99" "#file177" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file125" "#file178" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file126" "#file179" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file100" "#file180" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file101" "#file181" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file127" "#file182" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file128" "#file183" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file129" "#file184" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file130" "#file185" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file131" "#file186" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file132" "#file187" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file102" "#file188" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file103" "#file189" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file104" "#file190" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file105" "#file191" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file133" "#file192" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file134" "#file193" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file135" "#file194" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file136" "#file195" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file106" "#file196" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file107" "#file197" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file137" "#file198" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file138" "#file199" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s1 "#file200" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s2 "#file201" "/tmp/pash_eager_intermediate_#file62" & } +{ diff -B "#file200" "#file201" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file38" +rm -f "#file40" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (3296) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_IlHgioD5Nf +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_AERTycTu9G +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 157665.572 ms +(7) Recovering BaSh variables from: /tmp/pash_AERTycTu9G +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_IlHgioD5Nf +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_AQcEXkfPL2 +(1) Bash variables saved in: /tmp/pash_AQcEXkfPL2 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.214 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_AQcEXkfPL2 +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_ivdrhgjg: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_AeN8yEcTfP +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_95TAmbQu4q +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 51.496 ms +(7) Recovering BaSh variables from: /tmp/pash_95TAmbQu4q +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_AeN8yEcTfP +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_eajcdwjk +Preprocessing time: 43.188 ms + +real 2m39.324s +user 5m18.295s +sys 2m9.949s +Files /home/nikos/dish/evaluation//small_intermediary//diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_distr_auto_split.time new file mode 100644 index 000000000..223de7659 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_distr_auto_split.time @@ -0,0 +1,254 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_mflt99vk/pash_Pj2tAXhp6S +(1) Bash variables saved in: /tmp/pash_mflt99vk/pash_Pj2tAXhp6S +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_mflt99vk/tmp60e6onss ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.177 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_mflt99vk/pash_Pj2tAXhp6S +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_mflt99vk/tmp3b7nxs5s: +mkfifo s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_mflt99vk/pash_0wPqZrY5CZ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_mflt99vk/pash_stgTiddDyQ +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 19.810 ms +(7) Recovering BaSh variables from: /tmp/pash_mflt99vk/pash_stgTiddDyQ +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_mflt99vk/pash_0wPqZrY5CZ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_mflt99vk/pash_eB6dcpp8QJ +(1) Bash variables saved in: /tmp/pash_mflt99vk/pash_eB6dcpp8QJ +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_mflt99vk/tmplk4tu71v ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 19.533 ms +Total nodes after optimization: 17 + -- out of which: +Cat nodes: 0 +Eager nodes: 6 +Optimization time: 1.325 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file28, #file29], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file30, #file31], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file22, #file28], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file23, #file29], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file25, #file30], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file26, #file31], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:15:s1, #file32], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:16:s2, #file33], []) +arguments, redirs found for: diff +|-- ([#file32, #file33], []) +Backend time: 3.818 ms +Optimized script saved in: /tmp/pash_mflt99vk/pash_X8BtYomNmX +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_mflt99vk/pash_eB6dcpp8QJ +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_mflt99vk/pash_X8BtYomNmX: +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file10" +mkfifo "#file12" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +{ tr [:lower:] [:upper:] "#file18" & } +{ tr [:lower:] [:upper:] "#file19" & } +{ tr [:upper:] [:lower:] "#file20" & } +{ tr [:upper:] [:lower:] "#file21" & } +{ sort <"#file18" >"#file22" & } +{ sort <"#file19" >"#file23" & } +{ sort -m "#file28" "#file29" >s1 & } +{ sort <"#file20" >"#file25" & } +{ sort <"#file21" >"#file26" & } +{ sort -m "#file30" "#file31" >s2 & } +{ /home/ubuntu/pash/runtime/eager.sh "#file22" "#file28" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file23" "#file29" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file25" "#file30" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file26" "#file31" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh s1 "#file32" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh s2 "#file33" "/tmp/pash_eager_intermediate_#file6" & } +{ diff -B "#file32" "#file33" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33"diff: memory exhausted +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_mflt99vk/pash_kafLgvIAmg +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_mflt99vk/pash_o6P8cqTWvN +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 51185.696 ms +(7) Recovering BaSh variables from: /tmp/pash_mflt99vk/pash_o6P8cqTWvN +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_mflt99vk/pash_kafLgvIAmg +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_mflt99vk/pash_9HqU8AAKbX +(1) Bash variables saved in: /tmp/pash_mflt99vk/pash_9HqU8AAKbX +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_mflt99vk/tmpg75ieau5 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.168 ms +Optimization time: 0.001 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_mflt99vk/pash_9HqU8AAKbX +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_mflt99vk/tmpgsqueppc: +rm s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_mflt99vk/pash_XimaDuEDWE +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_mflt99vk/pash_HDBHRlNxnu +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 21.431 ms +(7) Recovering BaSh variables from: /tmp/pash_mflt99vk/pash_HDBHRlNxnu +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_mflt99vk/pash_XimaDuEDWE +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_mflt99vk/tmp2gm4on0j +Preprocessing time: 5.926 ms + +real 0m51.795s +user 1m52.343s +sys 0m27.106s +Files /home/ubuntu/pash/evaluation//small_intermediary//diff_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_distr_no_eager.time new file mode 100644 index 000000000..11c2fc655 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_distr_no_eager.time @@ -0,0 +1,221 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_0ezXIWCHem +(1) Bash variables saved in: /tmp/pash_0ezXIWCHem +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.229 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_0ezXIWCHem +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_fbyampfi: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_erasuvoTo6 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_IrFYPe8Bla +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.570 ms +(7) Recovering BaSh variables from: /tmp/pash_IrFYPe8Bla +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_erasuvoTo6 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_XzWSURKHtP +(1) Bash variables saved in: /tmp/pash_XzWSURKHtP +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 73.21 ms +Total nodes after optimization: 11 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 3.467 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file22, #file23], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file25, #file26], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: diff +|-- ([fid:15:s1, fid:16:s2], []) +Backend time: 12.954 ms +Optimized script saved in: /tmp/pash_KrwQMBKn8W +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_XzWSURKHtP +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_KrwQMBKn8W: +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file10" +mkfifo "#file12" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +{ tr [:lower:] [:upper:] "#file18" & } +{ tr [:lower:] [:upper:] "#file19" & } +{ tr [:upper:] [:lower:] "#file20" & } +{ tr [:upper:] [:lower:] "#file21" & } +{ sort <"#file18" >"#file22" & } +{ sort <"#file19" >"#file23" & } +{ sort -m "#file22" "#file23" >s1 & } +{ sort <"#file20" >"#file25" & } +{ sort <"#file21" >"#file26" & } +{ sort -m "#file25" "#file26" >s2 & } +{ diff -B s1 s2 & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (130312) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_CF8dts95CS +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pvi4sJTCnK +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 99515.138 ms +(7) Recovering BaSh variables from: /tmp/pash_pvi4sJTCnK +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_CF8dts95CS +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_kvyZt0xqRs +(1) Bash variables saved in: /tmp/pash_kvyZt0xqRs +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.215 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_kvyZt0xqRs +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_lqwbbpnb: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_LYo3qwfxCj +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_ppWfQGeM9G +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.331 ms +(7) Recovering BaSh variables from: /tmp/pash_ppWfQGeM9G +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_LYo3qwfxCj +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_loaskqot +Preprocessing time: 44.912 ms + +real 1m40.546s +user 4m24.005s +sys 0m28.370s +Files /home/nikos/dish/evaluation//small_intermediary//diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..4ea3bdc78 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_distr_no_task_par_eager.time @@ -0,0 +1,257 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_KHwYjLS0y3 +(1) Bash variables saved in: /tmp/pash_KHwYjLS0y3 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.225 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_KHwYjLS0y3 +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_rrkhudll: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_0jMgnX7Dmc +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_lADol9rtqV +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.156 ms +(7) Recovering BaSh variables from: /tmp/pash_lADol9rtqV +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_0jMgnX7Dmc +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_NMcGg3DMkI +(1) Bash variables saved in: /tmp/pash_NMcGg3DMkI +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: diff +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: diff +Compilation time: 72.778 ms +Total nodes after optimization: 17 + -- out of which: +Cat nodes: 0 +Eager nodes: 6 +Optimization time: 4.171 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file28, #file29], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file30, #file31], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file22, #file28], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file23, #file29], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file25, #file30], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file26, #file31], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:15:s1, #file32], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:16:s2, #file33], []) +arguments, redirs found for: diff +|-- ([#file32, #file33], []) +Backend time: 17.284 ms +Optimized script saved in: /tmp/pash_drZZBRIOFy +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_NMcGg3DMkI +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_drZZBRIOFy: +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file10" +mkfifo "#file12" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +{ tr [:lower:] [:upper:] "#file18" & } +{ tr [:lower:] [:upper:] "#file19" & } +{ tr [:upper:] [:lower:] "#file20" & } +{ tr [:upper:] [:lower:] "#file21" & } +{ sort <"#file18" >"#file22" & } +{ sort <"#file19" >"#file23" & } +{ sort -m "#file28" "#file29" >s1 & } +{ sort <"#file20" >"#file25" & } +{ sort <"#file21" >"#file26" & } +{ sort -m "#file30" "#file31" >s2 & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file22" "#file28" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file23" "#file29" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file25" "#file30" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file26" "#file31" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s1 "#file32" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s2 "#file33" "/tmp/pash_eager_intermediate_#file6" & } +{ diff -B "#file32" "#file33" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file10" +rm -f "#file12" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (130788) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_9UE0sntEHC +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_acGjB7ejfz +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 133539.717 ms +(7) Recovering BaSh variables from: /tmp/pash_acGjB7ejfz +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_9UE0sntEHC +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_F8bEt7xfCf +(1) Bash variables saved in: /tmp/pash_F8bEt7xfCf +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.218 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_F8bEt7xfCf +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_tncaqhfh: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_LrbExYA84I +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_0fpAXzRG7T +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.606 ms +(7) Recovering BaSh variables from: /tmp/pash_0fpAXzRG7T +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_LrbExYA84I +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_vxlievgw +Preprocessing time: 41.666 ms + +real 2m14.581s +user 4m20.795s +sys 0m44.685s +Files /home/nikos/dish/evaluation//small_intermediary//diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_seq.time new file mode 100644 index 000000000..522774020 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/diff_2_seq.time @@ -0,0 +1,5 @@ +diff: memory exhausted + +real 0m54.495s +user 1m37.826s +sys 0m12.033s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr.time new file mode 100644 index 000000000..32e4238ef --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr.time @@ -0,0 +1,549 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_DyzAfWxevY +(1) Bash variables saved in: /tmp/pash_DyzAfWxevY +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 275.954 ms +Total nodes after optimization: 78 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 9.156 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file71, #file72], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file73, #file74], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file75, #file76], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file77, #file78], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file79, #file80], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file81, #file82], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file83, #file84], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file85, #file86], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file87, #file88], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file89, #file90], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file91, #file92], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file93, #file94], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file95, #file96], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file97, #file98], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file99, #file100], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file40, #file71], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file41, #file72], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file42, #file73], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file43, #file74], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file44, #file75], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file45, #file76], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file46, #file77], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file47, #file78], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file48, #file79], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file49, #file80], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file50, #file81], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file51, #file82], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file52, #file83], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file53, #file84], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file54, #file85], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file55, #file86], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file56, #file87], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file57, #file88], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file58, #file89], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file59, #file90], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file60, #file91], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file61, #file92], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file62, #file93], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file63, #file94], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file64, #file95], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file65, #file96], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file66, #file97], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file67, #file98], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file68, #file99], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file69, #file100], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Backend time: 42.069 ms +Optimized script saved in: /tmp/pash_jFFysOC9XR +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_DyzAfWxevY +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_jFFysOC9XR: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ tr A-Z a-z "#file38" & } +{ tr A-Z a-z "#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort <"#file38" >"#file54" & } +{ sort <"#file39" >"#file55" & } +{ sort -m "#file71" "#file72" >"#file56" & } +{ sort -m "#file73" "#file74" >"#file57" & } +{ sort -m "#file75" "#file76" >"#file58" & } +{ sort -m "#file77" "#file78" >"#file59" & } +{ sort -m "#file79" "#file80" >"#file60" & } +{ sort -m "#file81" "#file82" >"#file61" & } +{ sort -m "#file83" "#file84" >"#file62" & } +{ sort -m "#file85" "#file86" >"#file63" & } +{ sort -m "#file87" "#file88" >"#file64" & } +{ sort -m "#file89" "#file90" >"#file65" & } +{ sort -m "#file91" "#file92" >"#file66" & } +{ sort -m "#file93" "#file94" >"#file67" & } +{ sort -m "#file95" "#file96" >"#file68" & } +{ sort -m "#file97" "#file98" >"#file69" & } +{ sort -m "#file99" "#file100" >"#file21" & } +{ /home/nikos/dish/runtime/eager.sh "#file40" "#file71" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager.sh "#file41" "#file72" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager.sh "#file42" "#file73" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager.sh "#file43" "#file74" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager.sh "#file44" "#file75" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager.sh "#file45" "#file76" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager.sh "#file46" "#file77" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager.sh "#file47" "#file78" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager.sh "#file48" "#file79" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager.sh "#file49" "#file80" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager.sh "#file50" "#file81" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager.sh "#file51" "#file82" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager.sh "#file52" "#file83" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager.sh "#file53" "#file84" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager.sh "#file54" "#file85" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager.sh "#file55" "#file86" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager.sh "#file56" "#file87" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager.sh "#file57" "#file88" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager.sh "#file58" "#file89" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager.sh "#file59" "#file90" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager.sh "#file60" "#file91" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager.sh "#file61" "#file92" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager.sh "#file62" "#file93" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager.sh "#file63" "#file94" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager.sh "#file64" "#file95" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager.sh "#file65" "#file96" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager.sh "#file66" "#file97" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager.sh "#file67" "#file98" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager.sh "#file68" "#file99" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager.sh "#file69" "#file100" "/tmp/pash_eager_intermediate_#file30" & } +{ sort -r <"#file21" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (17313) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_3suArCyyn3 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_BNItrHRQfU +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 80202.451 ms +(7) Recovering BaSh variables from: /tmp/pash_BNItrHRQfU +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_3suArCyyn3 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_oannpdfb +Preprocessing time: 27.143 ms + +real 1m20.939s +user 3m31.298s +sys 1m55.295s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr_auto_split.time new file mode 100644 index 000000000..606b635a1 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr_auto_split.time @@ -0,0 +1,1054 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_3x_5esro/pash_KfkZISKDUp +(1) Bash variables saved in: /tmp/pash_3x_5esro/pash_KfkZISKDUp +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_3x_5esro/tmpwlhqe9io ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 66.679 ms +Total nodes after optimization: 154 + -- out of which: +Cat nodes: 0 +Eager nodes: 75 +Optimization time: 5.917 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file119, #file120], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file121, #file122], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file123, #file124], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file125, #file126], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file127, #file128], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file129, #file130], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file133, #file134], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file131, #file132], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file135, #file136], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file137, #file138], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file139, #file140], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file141, #file142], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file143, #file144], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file145, #file146], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file147, #file148], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file21, #file71, #file72, #file73, #file74, #file75, #file76, #file77, #file78, #file79, #file80, #file81, #file82, #file83, #file84, #file85, #file86], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file119], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file120], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file121], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file122], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file123], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file45, #file124], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file46, #file125], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file47, #file126], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file48, #file127], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file49, #file128], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file50, #file129], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file51, #file130], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file54, #file131], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file55, #file132], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file52, #file133], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file53, #file134], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file56, #file135], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file57, #file136], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file58, #file137], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file59, #file138], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file60, #file139], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file61, #file140], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file62, #file141], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file142], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file68, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file69, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file71, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file72, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file73, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file74, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file75, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file76, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file77, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file93, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file193], []) +arguments, redirs found for: sort +|-- ([#file192, #file193], []) +Backend time: 30.459 ms +Optimized script saved in: /tmp/pash_3x_5esro/pash_Z0JW7yHpCt +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_3x_5esro/pash_KfkZISKDUp +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_3x_5esro/pash_Z0JW7yHpCt: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ tr A-Z a-z "#file38" & } +{ tr A-Z a-z "#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort <"#file38" >"#file54" & } +{ sort <"#file39" >"#file55" & } +{ sort -m "#file119" "#file120" >"#file56" & } +{ sort -m "#file121" "#file122" >"#file57" & } +{ sort -m "#file123" "#file124" >"#file58" & } +{ sort -m "#file125" "#file126" >"#file59" & } +{ sort -m "#file127" "#file128" >"#file60" & } +{ sort -m "#file129" "#file130" >"#file61" & } +{ sort -m "#file133" "#file134" >"#file62" & } +{ sort -m "#file131" "#file132" >"#file63" & } +{ sort -m "#file135" "#file136" >"#file64" & } +{ sort -m "#file137" "#file138" >"#file65" & } +{ sort -m "#file139" "#file140" >"#file66" & } +{ sort -m "#file141" "#file142" >"#file67" & } +{ sort -m "#file143" "#file144" >"#file68" & } +{ sort -m "#file145" "#file146" >"#file69" & } +{ sort -m "#file147" "#file148" >"#file21" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file21" "#file71" "#file72" "#file73" "#file74" "#file75" "#file76" "#file77" "#file78" "#file79" "#file80" "#file81" "#file82" "#file83" "#file84" "#file85" "#file86" & } +{ sort -r <"#file149" >"#file88" & } +{ sort -r <"#file150" >"#file89" & } +{ sort -r <"#file151" >"#file90" & } +{ sort -r <"#file152" >"#file91" & } +{ sort -r <"#file153" >"#file92" & } +{ sort -r <"#file154" >"#file93" & } +{ sort -r <"#file155" >"#file94" & } +{ sort -r <"#file156" >"#file95" & } +{ sort -r <"#file157" >"#file96" & } +{ sort -r <"#file158" >"#file97" & } +{ sort -r <"#file159" >"#file98" & } +{ sort -r <"#file160" >"#file99" & } +{ sort -r <"#file161" >"#file100" & } +{ sort -r <"#file162" >"#file101" & } +{ sort -r <"#file163" >"#file102" & } +{ sort -r <"#file86" >"#file103" & } +{ sort -r -m "#file164" "#file165" >"#file104" & } +{ sort -r -m "#file166" "#file167" >"#file105" & } +{ sort -r -m "#file168" "#file169" >"#file106" & } +{ sort -r -m "#file170" "#file171" >"#file107" & } +{ sort -r -m "#file172" "#file173" >"#file108" & } +{ sort -r -m "#file174" "#file175" >"#file109" & } +{ sort -r -m "#file176" "#file177" >"#file110" & } +{ sort -r -m "#file178" "#file179" >"#file111" & } +{ sort -r -m "#file180" "#file181" >"#file112" & } +{ sort -r -m "#file182" "#file183" >"#file113" & } +{ sort -r -m "#file184" "#file185" >"#file114" & } +{ sort -r -m "#file186" "#file187" >"#file115" & } +{ sort -r -m "#file188" "#file189" >"#file116" & } +{ sort -r -m "#file190" "#file191" >"#file117" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file119" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file120" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file121" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file122" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file123" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file45" "#file124" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file46" "#file125" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file47" "#file126" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file48" "#file127" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file49" "#file128" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file50" "#file129" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file51" "#file130" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file54" "#file131" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file55" "#file132" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file52" "#file133" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file53" "#file134" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file56" "#file135" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file57" "#file136" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file58" "#file137" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file59" "#file138" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file60" "#file139" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file61" "#file140" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file62" "#file141" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file142" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file143" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file144" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file145" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file146" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file68" "#file147" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file69" "#file148" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file71" "#file149" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file72" "#file150" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file73" "#file151" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file74" "#file152" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file75" "#file153" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file76" "#file154" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file77" "#file155" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file156" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file157" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file158" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file159" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file160" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file161" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file162" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file163" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file164" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file165" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file166" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file167" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file168" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file93" "#file169" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file170" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file171" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file172" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file173" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file174" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file175" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file176" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file177" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file178" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file179" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file180" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file181" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file182" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file183" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file184" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file185" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file186" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file187" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file188" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file189" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file190" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file191" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file192" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file193" "/tmp/pash_eager_intermediate_#file75" & } +{ sort -r -m "#file192" "#file193" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_3x_5esro/pash_qtCMQ9d8wh +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_3x_5esro/pash_pFCcozWpTf +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 32366.277 ms +(7) Recovering BaSh variables from: /tmp/pash_3x_5esro/pash_pFCcozWpTf +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_3x_5esro/pash_qtCMQ9d8wh +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_3x_5esro/tmpfbzrxg2v +Preprocessing time: 4.995 ms + +real 0m32.707s +user 2m17.854s +sys 0m52.558s +Files /home/ubuntu/pash/evaluation//small_intermediary//double_sort_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr_no_eager.time new file mode 100644 index 000000000..98bb9f4a3 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr_no_eager.time @@ -0,0 +1,369 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_fT6Zn08kV2 +(1) Bash variables saved in: /tmp/pash_fT6Zn08kV2 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 267.846 ms +Total nodes after optimization: 48 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 6.507 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file40, #file41], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file42, #file43], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file44, #file45], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file46, #file47], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file48, #file49], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file50, #file51], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file52, #file53], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file54, #file55], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file56, #file57], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file58, #file59], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file60, #file61], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file62, #file63], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file64, #file65], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file66, #file67], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file68, #file69], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Backend time: 29.079 ms +Optimized script saved in: /tmp/pash_u33UA8WozG +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_fT6Zn08kV2 +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_u33UA8WozG: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ tr A-Z a-z "#file38" & } +{ tr A-Z a-z "#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort <"#file38" >"#file54" & } +{ sort <"#file39" >"#file55" & } +{ sort -m "#file40" "#file41" >"#file56" & } +{ sort -m "#file42" "#file43" >"#file57" & } +{ sort -m "#file44" "#file45" >"#file58" & } +{ sort -m "#file46" "#file47" >"#file59" & } +{ sort -m "#file48" "#file49" >"#file60" & } +{ sort -m "#file50" "#file51" >"#file61" & } +{ sort -m "#file52" "#file53" >"#file62" & } +{ sort -m "#file54" "#file55" >"#file63" & } +{ sort -m "#file56" "#file57" >"#file64" & } +{ sort -m "#file58" "#file59" >"#file65" & } +{ sort -m "#file60" "#file61" >"#file66" & } +{ sort -m "#file62" "#file63" >"#file67" & } +{ sort -m "#file64" "#file65" >"#file68" & } +{ sort -m "#file66" "#file67" >"#file69" & } +{ sort -m "#file68" "#file69" >"#file21" & } +{ sort -r <"#file21" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (16022) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_fyK3l7y3z1 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_AkQphRMLmV +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 91861.998 ms +(7) Recovering BaSh variables from: /tmp/pash_AkQphRMLmV +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_fyK3l7y3z1 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_arfoacxy +Preprocessing time: 26.825 ms + +real 1m32.571s +user 3m46.850s +sys 0m22.397s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..f019aaf18 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_16_distr_no_task_par_eager.time @@ -0,0 +1,549 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_AnD4xD63ro +(1) Bash variables saved in: /tmp/pash_AnD4xD63ro +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 265.028 ms +Total nodes after optimization: 78 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 9.198 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file77, #file78], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file79, #file80], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file81, #file82], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file83, #file84], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file85, #file86], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file71, #file72], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file75, #file76], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file73, #file74], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file91, #file92], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file93, #file94], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file87, #file88], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file89, #file90], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file97, #file98], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file95, #file96], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file99, #file100], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file50, #file71], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file51, #file72], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file54, #file73], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file55, #file74], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file52, #file75], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file53, #file76], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file40, #file77], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file41, #file78], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file42, #file79], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file43, #file80], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file44, #file81], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file45, #file82], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file46, #file83], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file47, #file84], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file48, #file85], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file49, #file86], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file60, #file87], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file61, #file88], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file62, #file89], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file63, #file90], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file56, #file91], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file57, #file92], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file58, #file93], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file59, #file94], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file66, #file95], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file67, #file96], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file64, #file97], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file65, #file98], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file68, #file99], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file69, #file100], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Backend time: 42.087 ms +Optimized script saved in: /tmp/pash_IlXBb9gHCp +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_AnD4xD63ro +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_IlXBb9gHCp: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ tr A-Z a-z "#file38" & } +{ tr A-Z a-z "#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort <"#file38" >"#file54" & } +{ sort <"#file39" >"#file55" & } +{ sort -m "#file77" "#file78" >"#file56" & } +{ sort -m "#file79" "#file80" >"#file57" & } +{ sort -m "#file81" "#file82" >"#file58" & } +{ sort -m "#file83" "#file84" >"#file59" & } +{ sort -m "#file85" "#file86" >"#file60" & } +{ sort -m "#file71" "#file72" >"#file61" & } +{ sort -m "#file75" "#file76" >"#file62" & } +{ sort -m "#file73" "#file74" >"#file63" & } +{ sort -m "#file91" "#file92" >"#file64" & } +{ sort -m "#file93" "#file94" >"#file65" & } +{ sort -m "#file87" "#file88" >"#file66" & } +{ sort -m "#file89" "#file90" >"#file67" & } +{ sort -m "#file97" "#file98" >"#file68" & } +{ sort -m "#file95" "#file96" >"#file69" & } +{ sort -m "#file99" "#file100" >"#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file50" "#file71" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file51" "#file72" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file54" "#file73" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file55" "#file74" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file52" "#file75" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file53" "#file76" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file40" "#file77" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file41" "#file78" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file42" "#file79" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file43" "#file80" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file44" "#file81" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file45" "#file82" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file46" "#file83" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file47" "#file84" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file48" "#file85" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file49" "#file86" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file60" "#file87" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file61" "#file88" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file62" "#file89" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file63" "#file90" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file56" "#file91" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file57" "#file92" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file58" "#file93" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file59" "#file94" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file66" "#file95" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file67" "#file96" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file64" "#file97" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file65" "#file98" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file68" "#file99" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file69" "#file100" "/tmp/pash_eager_intermediate_#file30" & } +{ sort -r <"#file21" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (16704) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_0EG0RAtsaJ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_AyvhQE1Ltn +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 128474.651 ms +(7) Recovering BaSh variables from: /tmp/pash_AyvhQE1Ltn +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_0EG0RAtsaJ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_upajoaxh +Preprocessing time: 26.251 ms + +real 2m9.196s +user 3m25.588s +sys 0m46.409s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr.time new file mode 100644 index 000000000..daa2650f1 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr.time @@ -0,0 +1,115 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_P4MTLUNAk4 +(1) Bash variables saved in: /tmp/pash_P4MTLUNAk4 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 35.762 ms +Total nodes after optimization: 8 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 1.83 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file15, #file16], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file12, #file15], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file13, #file16], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +Backend time: 10.983 ms +Optimized script saved in: /tmp/pash_uidosZ6rTk +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_P4MTLUNAk4 +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_uidosZ6rTk: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +mkfifo "#file15" +mkfifo "#file16" +{ tr A-Z a-z "#file10" & } +{ tr A-Z a-z "#file11" & } +{ sort <"#file10" >"#file12" & } +{ sort <"#file11" >"#file13" & } +{ sort -m "#file15" "#file16" >"#file7" & } +{ /home/nikos/dish/runtime/eager.sh "#file12" "#file15" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager.sh "#file13" "#file16" "/tmp/pash_eager_intermediate_#file2" & } +{ sort -r <"#file7" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (15195) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_88GIrbU7O3 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_s5LisVmscf +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 129088.146 ms +(7) Recovering BaSh variables from: /tmp/pash_s5LisVmscf +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_88GIrbU7O3 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_mdnrhwcy +Preprocessing time: 27.385 ms + +real 2m9.530s +user 3m1.598s +sys 0m21.883s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr_auto_split.time new file mode 100644 index 000000000..10c0bb0a1 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr_auto_split.time @@ -0,0 +1,158 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_485v9qfl/pash_06P2d0bZ1K +(1) Bash variables saved in: /tmp/pash_485v9qfl/pash_06P2d0bZ1K +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_485v9qfl/tmp6a178yk8 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 9.184 ms +Total nodes after optimization: 14 + -- out of which: +Cat nodes: 0 +Eager nodes: 5 +Optimization time: 1.962 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file21, #file22], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file7, #file15, #file16], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file12, #file21], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file13, #file22], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file15, #file23], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file18, #file24], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file19, #file25], []) +arguments, redirs found for: sort +|-- ([#file24, #file25], []) +Backend time: 3.236 ms +Optimized script saved in: /tmp/pash_485v9qfl/pash_4u1yTjrMwl +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_485v9qfl/pash_06P2d0bZ1K +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_485v9qfl/pash_4u1yTjrMwl: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +mkfifo "#file15" +mkfifo "#file16" +mkfifo "#file17" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +{ tr A-Z a-z "#file10" & } +{ tr A-Z a-z "#file11" & } +{ sort <"#file10" >"#file12" & } +{ sort <"#file11" >"#file13" & } +{ sort -m "#file21" "#file22" >"#file7" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file7" "#file15" "#file16" & } +{ sort -r <"#file23" >"#file18" & } +{ sort -r <"#file16" >"#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file12" "#file21" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file13" "#file22" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file15" "#file23" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file18" "#file24" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file19" "#file25" "/tmp/pash_eager_intermediate_#file5" & } +{ sort -r -m "#file24" "#file25" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_485v9qfl/pash_Hhk5JESxFL +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_485v9qfl/pash_LGmho9vCF4 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 51078.010 ms +(7) Recovering BaSh variables from: /tmp/pash_485v9qfl/pash_LGmho9vCF4 +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_485v9qfl/pash_Hhk5JESxFL +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_485v9qfl/tmpoqz3ykl_ +Preprocessing time: 4.888 ms + +real 0m51.343s +user 1m19.811s +sys 0m19.793s +Files /home/ubuntu/pash/evaluation//small_intermediary//double_sort_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr_no_eager.time new file mode 100644 index 000000000..f87fb8404 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr_no_eager.time @@ -0,0 +1,103 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_T5s5fHpkpg +(1) Bash variables saved in: /tmp/pash_T5s5fHpkpg +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 33.543 ms +Total nodes after optimization: 6 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 1.673 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file12, #file13], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +Backend time: 8.888 ms +Optimized script saved in: /tmp/pash_B6Xm21kkF2 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_T5s5fHpkpg +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_B6Xm21kkF2: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +{ tr A-Z a-z "#file10" & } +{ tr A-Z a-z "#file11" & } +{ sort <"#file10" >"#file12" & } +{ sort <"#file11" >"#file13" & } +{ sort -m "#file12" "#file13" >"#file7" & } +{ sort -r <"#file7" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (14742) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_fhArDNcAZH +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_QDzXDK09G4 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 131257.123 ms +(7) Recovering BaSh variables from: /tmp/pash_QDzXDK09G4 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_fhArDNcAZH +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_udaqemvp +Preprocessing time: 26.724 ms + +real 2m11.705s +user 3m3.014s +sys 0m15.803s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..ef19127a8 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_distr_no_task_par_eager.time @@ -0,0 +1,115 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ACgqTMSyhf +(1) Bash variables saved in: /tmp/pash_ACgqTMSyhf +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Compilation time: 35.87 ms +Total nodes after optimization: 8 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 1.848 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file15, #file16], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file12, #file15], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file13, #file16], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +Backend time: 11.361 ms +Optimized script saved in: /tmp/pash_n3pGgKwZVB +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_ACgqTMSyhf +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_n3pGgKwZVB: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +mkfifo "#file15" +mkfifo "#file16" +{ tr A-Z a-z "#file10" & } +{ tr A-Z a-z "#file11" & } +{ sort <"#file10" >"#file12" & } +{ sort <"#file11" >"#file13" & } +{ sort -m "#file15" "#file16" >"#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file12" "#file15" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file13" "#file16" "/tmp/pash_eager_intermediate_#file2" & } +{ sort -r <"#file7" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +rm -f "#file15" +rm -f "#file16" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (14962) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_a8WKFjtinQ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_iMCvUKbS9d +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 141200.116 ms +(7) Recovering BaSh variables from: /tmp/pash_iMCvUKbS9d +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_a8WKFjtinQ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_hrmfoplh +Preprocessing time: 26.512 ms + +real 2m21.645s +user 3m0.646s +sys 0m21.506s +Files /home/nikos/dish/evaluation//small_intermediary//double_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_seq.time new file mode 100644 index 000000000..14b8c147c --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/double_sort_2_seq.time @@ -0,0 +1,4 @@ + +real 1m22.292s +user 1m10.735s +sys 0m8.249s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_16_distr_auto_split.time new file mode 100644 index 000000000..5968b4e78 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_16_distr_auto_split.time @@ -0,0 +1,367 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_s9v0aj_7/pash_CDHsJhemQZ +(1) Bash variables saved in: /tmp/pash_s9v0aj_7/pash_CDHsJhemQZ +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_s9v0aj_7/tmpu2giy0q1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Compilation time: 66.224 ms +Total nodes after optimization: 49 + -- out of which: +Cat nodes: 1 +Eager nodes: 16 +Optimization time: 3.899 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file54], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file55], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file56], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file57], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file58], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file59], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file60], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file45, #file61], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file46, #file62], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file47, #file63], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file48, #file64], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file49, #file65], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file50, #file66], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file51, #file67], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file52, #file68], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file53, #file69], []) +arguments, redirs found for: cat +|-- ([#file54, #file55, #file56, #file57, #file58, #file59, #file60, #file61, #file62, #file63, #file64, #file65, #file66, #file67, #file68, #file69], []) +Backend time: 11.001 ms +Optimized script saved in: /tmp/pash_s9v0aj_7/pash_r5jOJb9xju +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_s9v0aj_7/pash_CDHsJhemQZ +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_s9v0aj_7/pash_r5jOJb9xju: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file22" >"#file38" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file23" >"#file39" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file24" >"#file40" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file25" >"#file41" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file26" >"#file42" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file27" >"#file43" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file28" >"#file44" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file29" >"#file45" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file30" >"#file46" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file31" >"#file47" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file32" >"#file48" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file33" >"#file49" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file34" >"#file50" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file35" >"#file51" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file36" >"#file52" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file37" >"#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file54" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file55" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file56" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file57" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file58" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file59" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file60" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file45" "#file61" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file46" "#file62" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file47" "#file63" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file48" "#file64" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file49" "#file65" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file50" "#file66" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file51" "#file67" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file52" "#file68" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file53" "#file69" "/tmp/pash_eager_intermediate_#file16" & } +{ cat "#file54" "#file55" "#file56" "#file57" "#file58" "#file59" "#file60" "#file61" "#file62" "#file63" "#file64" "#file65" "#file66" "#file67" "#file68" "#file69" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_s9v0aj_7/pash_SepOoNmx3u +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_s9v0aj_7/pash_cjwJADMfSS +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 49332.933 ms +(7) Recovering BaSh variables from: /tmp/pash_s9v0aj_7/pash_cjwJADMfSS +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_s9v0aj_7/pash_SepOoNmx3u +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_s9v0aj_7/tmpz8_bm_g2 +Preprocessing time: 5.176 ms + +real 0m49.648s +user 6m27.500s +sys 0m1.619s +Files /home/ubuntu/pash/evaluation//small_intermediary//minimal_grep_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..63ea83a1c --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_16_distr_no_task_par_eager.time @@ -0,0 +1,369 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_16oDoDivu6 +(1) Bash variables saved in: /tmp/pash_16oDoDivu6 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Compilation time: 260.248 ms +Total nodes after optimization: 49 + -- out of which: +Cat nodes: 1 +Eager nodes: 16 +Optimization time: 9.739 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file38, #file54], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file39, #file55], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file40, #file56], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file41, #file57], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file42, #file58], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file43, #file59], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file44, #file60], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file45, #file61], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file46, #file62], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file47, #file63], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file48, #file64], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file49, #file65], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file50, #file66], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file51, #file67], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file52, #file68], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file53, #file69], []) +arguments, redirs found for: cat +|-- ([#file54, #file55, #file56, #file57, #file58, #file59, #file60, #file61, #file62, #file63, #file64, #file65, #file66, #file67, #file68, #file69], []) +Backend time: 32.359 ms +Optimized script saved in: /tmp/pash_B8RGvOqsuk +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_16oDoDivu6 +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_B8RGvOqsuk: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file22" >"#file38" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file23" >"#file39" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file24" >"#file40" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file25" >"#file41" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file26" >"#file42" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file27" >"#file43" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file28" >"#file44" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file29" >"#file45" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file30" >"#file46" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file31" >"#file47" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file32" >"#file48" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file33" >"#file49" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file34" >"#file50" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file35" >"#file51" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file36" >"#file52" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file37" >"#file53" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file38" "#file54" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file39" "#file55" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file40" "#file56" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file41" "#file57" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file42" "#file58" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file43" "#file59" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file44" "#file60" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file45" "#file61" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file46" "#file62" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file47" "#file63" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file48" "#file64" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file49" "#file65" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file50" "#file66" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file51" "#file67" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file52" "#file68" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file53" "#file69" "/tmp/pash_eager_intermediate_#file16" & } +{ cat "#file54" "#file55" "#file56" "#file57" "#file58" "#file59" "#file60" "#file61" "#file62" "#file63" "#file64" "#file65" "#file66" "#file67" "#file68" "#file69" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (118269) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_ExJnzsSMWL +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_dlFNFeCXa3 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 28386.630 ms +(7) Recovering BaSh variables from: /tmp/pash_dlFNFeCXa3 +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_ExJnzsSMWL +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_gdjqbopb +Preprocessing time: 27.912 ms + +real 0m29.096s +user 7m18.601s +sys 0m3.620s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_grep_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_2_distr_auto_split.time new file mode 100644 index 000000000..87a4db03c --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_2_distr_auto_split.time @@ -0,0 +1,101 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_dh3e9uzh/pash_1edoxD3jlm +(1) Bash variables saved in: /tmp/pash_dh3e9uzh/pash_1edoxD3jlm +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_dh3e9uzh/tmpsfp84w8a ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Compilation time: 9.797 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 2 +Optimization time: 1.819 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file10, #file12], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file11, #file13], []) +arguments, redirs found for: cat +|-- ([#file12, #file13], []) +Backend time: 2.06 ms +Optimized script saved in: /tmp/pash_dh3e9uzh/pash_CFEckCnJnt +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_dh3e9uzh/pash_1edoxD3jlm +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_dh3e9uzh/pash_CFEckCnJnt: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file8" >"#file10" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file9" >"#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file10" "#file12" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file11" "#file13" "/tmp/pash_eager_intermediate_#file2" & } +{ cat "#file12" "#file13" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_dh3e9uzh/pash_eQzej7ucOU +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_dh3e9uzh/pash_iOr5jjGB3U +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 113376.791 ms +(7) Recovering BaSh variables from: /tmp/pash_dh3e9uzh/pash_iOr5jjGB3U +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_dh3e9uzh/pash_eQzej7ucOU +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_dh3e9uzh/tmp1j44xjos +Preprocessing time: 10.622 ms + +real 1m53.741s +user 3m46.596s +sys 0m1.723s +Files /home/ubuntu/pash/evaluation//small_intermediary//minimal_grep_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..7770e69bb --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_2_distr_no_task_par_eager.time @@ -0,0 +1,103 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_z5q7ndXKMN +(1) Bash variables saved in: /tmp/pash_z5q7ndXKMN +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Compilation time: 35.122 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 2 +Optimization time: 2.172 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file10, #file12], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file11, #file13], []) +arguments, redirs found for: cat +|-- ([#file12, #file13], []) +Backend time: 10.032 ms +Optimized script saved in: /tmp/pash_A6QG7RbwxY +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_z5q7ndXKMN +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_A6QG7RbwxY: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file8" >"#file10" & } +{ grep "\\(.\\).*\\1\\(.\\).*\\2\\(.\\).*\\3\\(.\\).*\\4" <"#file9" >"#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file10" "#file12" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file11" "#file13" "/tmp/pash_eager_intermediate_#file2" & } +{ cat "#file12" "#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (117481) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_HeTFeTMWYk +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_CPGFgxlnBP +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 239993.526 ms +(7) Recovering BaSh variables from: /tmp/pash_CPGFgxlnBP +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_HeTFeTMWYk +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_urihlwki +Preprocessing time: 26.469 ms + +real 4m0.438s +user 7m58.663s +sys 0m2.014s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_grep_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_2_seq.time new file mode 100644 index 000000000..b1faae53e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_grep_2_seq.time @@ -0,0 +1,4 @@ + +real 3m45.730s +user 3m44.515s +sys 0m0.729s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_16_distr_auto_split.time new file mode 100644 index 000000000..b14cb9f96 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_16_distr_auto_split.time @@ -0,0 +1,538 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_pt23xzy9/pash_O72sNghsVA +(1) Bash variables saved in: /tmp/pash_pt23xzy9/pash_O72sNghsVA +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_pt23xzy9/tmpzaqx3gm6 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 67.42 ms +Total nodes after optimization: 77 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 3.22 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file83, #file84], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file79, #file80], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file75, #file76], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file71, #file72], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file69, #file70], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file81, #file82], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file77, #file78], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file73, #file74], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file91, #file92], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file87, #file88], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file85, #file86], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file89, #file90], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file95, #file96], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file93, #file94], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file46, #file69], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file47, #file70], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file71], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file45, #file72], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file52, #file73], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file53, #file74], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file75], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file76], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file50, #file77], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file51, #file78], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file79], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file80], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file48, #file81], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file49, #file82], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file83], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file84], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file58, #file85], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file59, #file86], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file56, #file87], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file57, #file88], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file60, #file89], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file61, #file90], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file54, #file91], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file55, #file92], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file93], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file94], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file62, #file95], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file96], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file97], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file98], []) +arguments, redirs found for: sort +|-- ([#file97, #file98], []) +Backend time: 14.792 ms +Optimized script saved in: /tmp/pash_pt23xzy9/pash_a1hKzh45lW +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_pt23xzy9/pash_O72sNghsVA +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_pt23xzy9/pash_a1hKzh45lW: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ sort <"#file22" >"#file38" & } +{ sort <"#file23" >"#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort -m "#file83" "#file84" >"#file54" & } +{ sort -m "#file79" "#file80" >"#file55" & } +{ sort -m "#file75" "#file76" >"#file56" & } +{ sort -m "#file71" "#file72" >"#file57" & } +{ sort -m "#file69" "#file70" >"#file58" & } +{ sort -m "#file81" "#file82" >"#file59" & } +{ sort -m "#file77" "#file78" >"#file60" & } +{ sort -m "#file73" "#file74" >"#file61" & } +{ sort -m "#file91" "#file92" >"#file62" & } +{ sort -m "#file87" "#file88" >"#file63" & } +{ sort -m "#file85" "#file86" >"#file64" & } +{ sort -m "#file89" "#file90" >"#file65" & } +{ sort -m "#file95" "#file96" >"#file66" & } +{ sort -m "#file93" "#file94" >"#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file46" "#file69" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file47" "#file70" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file71" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file45" "#file72" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file52" "#file73" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file53" "#file74" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file75" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file76" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file50" "#file77" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file51" "#file78" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file79" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file80" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file48" "#file81" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file49" "#file82" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file83" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file84" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file58" "#file85" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file59" "#file86" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file56" "#file87" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file57" "#file88" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file60" "#file89" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file61" "#file90" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file54" "#file91" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file55" "#file92" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file93" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file94" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file62" "#file95" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file96" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file97" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file98" "/tmp/pash_eager_intermediate_#file30" & } +{ sort -m "#file97" "#file98" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_pt23xzy9/pash_ERIoEwlUsy +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pt23xzy9/pash_qJ2e6yxruy +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 17542.225 ms +(7) Recovering BaSh variables from: /tmp/pash_pt23xzy9/pash_qJ2e6yxruy +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_pt23xzy9/pash_ERIoEwlUsy +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_pt23xzy9/tmperot_hbn +Preprocessing time: 5.166 ms + +real 0m17.867s +user 1m35.086s +sys 0m24.890s +Files /home/ubuntu/pash/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_16_distr_no_eager.time new file mode 100644 index 000000000..d141429a7 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_16_distr_no_eager.time @@ -0,0 +1,360 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_X03C9X12Q3 +(1) Bash variables saved in: /tmp/pash_X03C9X12Q3 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 265.772 ms +Total nodes after optimization: 47 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 6.829 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file38, #file39], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file40, #file41], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file42, #file43], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file44, #file45], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file46, #file47], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file48, #file49], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file50, #file51], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file52, #file53], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file54, #file55], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file56, #file57], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file58, #file59], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file60, #file61], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file62, #file63], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file64, #file65], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file66, #file67], []) +Backend time: 28.081 ms +Optimized script saved in: /tmp/pash_iTKzZqPh2D +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_X03C9X12Q3 +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_iTKzZqPh2D: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ sort <"#file22" >"#file38" & } +{ sort <"#file23" >"#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort -m "#file38" "#file39" >"#file54" & } +{ sort -m "#file40" "#file41" >"#file55" & } +{ sort -m "#file42" "#file43" >"#file56" & } +{ sort -m "#file44" "#file45" >"#file57" & } +{ sort -m "#file46" "#file47" >"#file58" & } +{ sort -m "#file48" "#file49" >"#file59" & } +{ sort -m "#file50" "#file51" >"#file60" & } +{ sort -m "#file52" "#file53" >"#file61" & } +{ sort -m "#file54" "#file55" >"#file62" & } +{ sort -m "#file56" "#file57" >"#file63" & } +{ sort -m "#file58" "#file59" >"#file64" & } +{ sort -m "#file60" "#file61" >"#file65" & } +{ sort -m "#file62" "#file63" >"#file66" & } +{ sort -m "#file64" "#file65" >"#file67" & } +{ sort -m "#file66" "#file67" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (119741) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_XmeekaJ8Hq +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pWt9X085Or +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 33779.545 ms +(7) Recovering BaSh variables from: /tmp/pash_pWt9X085Or +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_XmeekaJ8Hq +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_lipmmtly +Preprocessing time: 27.861 ms + +real 0m34.486s +user 2m49.032s +sys 0m16.135s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..41540b9aa --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_16_distr_no_task_par_eager.time @@ -0,0 +1,540 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ixjOKuEFhi +(1) Bash variables saved in: /tmp/pash_ixjOKuEFhi +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 270.424 ms +Total nodes after optimization: 77 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 9.381 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file75, #file76], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file79, #file80], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file77, #file78], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file81, #file82], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file83, #file84], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file73, #file74], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file71, #file72], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file69, #file70], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file89, #file90], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file91, #file92], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file87, #file88], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file85, #file86], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file95, #file96], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file93, #file94], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file52, #file69], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file53, #file70], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file50, #file71], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file51, #file72], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file48, #file73], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file49, #file74], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file38, #file75], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file39, #file76], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file42, #file77], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file43, #file78], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file40, #file79], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file41, #file80], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file44, #file81], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file45, #file82], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file46, #file83], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file47, #file84], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file60, #file85], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file61, #file86], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file58, #file87], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file59, #file88], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file54, #file89], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file55, #file90], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file56, #file91], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file57, #file92], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file64, #file93], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file65, #file94], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file62, #file95], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file63, #file96], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file66, #file97], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file67, #file98], []) +arguments, redirs found for: sort +|-- ([#file97, #file98], []) +Backend time: 42.224 ms +Optimized script saved in: /tmp/pash_qYiFUy98uO +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_ixjOKuEFhi +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_qYiFUy98uO: +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +{ tr A-Z a-z "#file22" & } +{ tr A-Z a-z "#file23" & } +{ tr A-Z a-z "#file24" & } +{ tr A-Z a-z "#file25" & } +{ tr A-Z a-z "#file26" & } +{ tr A-Z a-z "#file27" & } +{ tr A-Z a-z "#file28" & } +{ tr A-Z a-z "#file29" & } +{ tr A-Z a-z "#file30" & } +{ tr A-Z a-z "#file31" & } +{ tr A-Z a-z "#file32" & } +{ tr A-Z a-z "#file33" & } +{ tr A-Z a-z "#file34" & } +{ tr A-Z a-z "#file35" & } +{ tr A-Z a-z "#file36" & } +{ tr A-Z a-z "#file37" & } +{ sort <"#file22" >"#file38" & } +{ sort <"#file23" >"#file39" & } +{ sort <"#file24" >"#file40" & } +{ sort <"#file25" >"#file41" & } +{ sort <"#file26" >"#file42" & } +{ sort <"#file27" >"#file43" & } +{ sort <"#file28" >"#file44" & } +{ sort <"#file29" >"#file45" & } +{ sort <"#file30" >"#file46" & } +{ sort <"#file31" >"#file47" & } +{ sort <"#file32" >"#file48" & } +{ sort <"#file33" >"#file49" & } +{ sort <"#file34" >"#file50" & } +{ sort <"#file35" >"#file51" & } +{ sort <"#file36" >"#file52" & } +{ sort <"#file37" >"#file53" & } +{ sort -m "#file75" "#file76" >"#file54" & } +{ sort -m "#file79" "#file80" >"#file55" & } +{ sort -m "#file77" "#file78" >"#file56" & } +{ sort -m "#file81" "#file82" >"#file57" & } +{ sort -m "#file83" "#file84" >"#file58" & } +{ sort -m "#file73" "#file74" >"#file59" & } +{ sort -m "#file71" "#file72" >"#file60" & } +{ sort -m "#file69" "#file70" >"#file61" & } +{ sort -m "#file89" "#file90" >"#file62" & } +{ sort -m "#file91" "#file92" >"#file63" & } +{ sort -m "#file87" "#file88" >"#file64" & } +{ sort -m "#file85" "#file86" >"#file65" & } +{ sort -m "#file95" "#file96" >"#file66" & } +{ sort -m "#file93" "#file94" >"#file67" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file52" "#file69" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file53" "#file70" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file50" "#file71" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file51" "#file72" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file48" "#file73" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file49" "#file74" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file38" "#file75" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file39" "#file76" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file42" "#file77" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file43" "#file78" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file40" "#file79" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file41" "#file80" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file44" "#file81" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file45" "#file82" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file46" "#file83" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file47" "#file84" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file60" "#file85" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file61" "#file86" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file58" "#file87" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file59" "#file88" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file54" "#file89" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file55" "#file90" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file56" "#file91" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file57" "#file92" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file64" "#file93" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file65" "#file94" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file62" "#file95" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file63" "#file96" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file66" "#file97" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file67" "#file98" "/tmp/pash_eager_intermediate_#file30" & } +{ sort -m "#file97" "#file98" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (120478) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_7kEjlIuC3c +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_vg8V4Eu2nI +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 58038.961 ms +(7) Recovering BaSh variables from: /tmp/pash_vg8V4Eu2nI +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_7kEjlIuC3c +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_cpmuizho +Preprocessing time: 27.031 ms + +real 0m58.773s +user 2m28.550s +sys 0m40.505s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_distr_auto_split.time new file mode 100644 index 000000000..7ed702cf4 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_distr_auto_split.time @@ -0,0 +1,104 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_3baasx6t/pash_ikEBserkup +(1) Bash variables saved in: /tmp/pash_3baasx6t/pash_ikEBserkup +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_3baasx6t/tmpfr4kewcg ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 8.974 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 0.622 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file10, #file13], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file11, #file14], []) +arguments, redirs found for: sort +|-- ([#file13, #file14], []) +Backend time: 2.776 ms +Optimized script saved in: /tmp/pash_3baasx6t/pash_msXzbkQZpS +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_3baasx6t/pash_ikEBserkup +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_3baasx6t/pash_msXzbkQZpS: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ sort <"#file8" >"#file10" & } +{ sort <"#file9" >"#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file10" "#file13" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file11" "#file14" "/tmp/pash_eager_intermediate_#file2" & } +{ sort -m "#file13" "#file14" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_3baasx6t/pash_aYDbkeqGXp +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_3baasx6t/pash_GRj7npwcZs +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 29101.985 ms +(7) Recovering BaSh variables from: /tmp/pash_3baasx6t/pash_GRj7npwcZs +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_3baasx6t/pash_aYDbkeqGXp +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_3baasx6t/tmp4nrwwe7w +Preprocessing time: 5.696 ms + +real 0m29.351s +user 0m53.430s +sys 0m7.860s +Files /home/ubuntu/pash/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_distr_no_eager.time new file mode 100644 index 000000000..22d120c35 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_distr_no_eager.time @@ -0,0 +1,94 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_VSSLQaJHuv +(1) Bash variables saved in: /tmp/pash_VSSLQaJHuv +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 34.831 ms +Total nodes after optimization: 5 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 1.449 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file10, #file11], []) +Backend time: 9.701 ms +Optimized script saved in: /tmp/pash_0Asjs5o36Z +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_VSSLQaJHuv +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_0Asjs5o36Z: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ sort <"#file8" >"#file10" & } +{ sort <"#file9" >"#file11" & } +{ sort -m "#file10" "#file11" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (118976) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_ty0hFArjsy +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_bX9kaetm3W +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 73083.352 ms +(7) Recovering BaSh variables from: /tmp/pash_bX9kaetm3W +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_ty0hFArjsy +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_qsaqtuxj +Preprocessing time: 27.33 ms + +real 1m13.529s +user 2m6.651s +sys 0m10.672s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..20e18540d --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_distr_no_task_par_eager.time @@ -0,0 +1,106 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_sJvlUxddFr +(1) Bash variables saved in: /tmp/pash_sJvlUxddFr +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Compilation time: 35.076 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 1.912 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file10, #file13], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file11, #file14], []) +arguments, redirs found for: sort +|-- ([#file13, #file14], []) +Backend time: 9.986 ms +Optimized script saved in: /tmp/pash_d0OZZybm54 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_sJvlUxddFr +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_d0OZZybm54: +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file8" +mkfifo "#file9" +mkfifo "#file10" +mkfifo "#file11" +mkfifo "#file12" +mkfifo "#file13" +mkfifo "#file14" +{ tr A-Z a-z "#file8" & } +{ tr A-Z a-z "#file9" & } +{ sort <"#file8" >"#file10" & } +{ sort <"#file9" >"#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file10" "#file13" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file11" "#file14" "/tmp/pash_eager_intermediate_#file2" & } +{ sort -m "#file13" "#file14" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file8" +rm -f "#file9" +rm -f "#file10" +rm -f "#file11" +rm -f "#file12" +rm -f "#file13" +rm -f "#file14" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (119201) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_OCVOjvRinX +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_0xlJ7Q8dLB +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 80657.983 ms +(7) Recovering BaSh variables from: /tmp/pash_0xlJ7Q8dLB +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_OCVOjvRinX +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_xwibpwzm +Preprocessing time: 27.305 ms + +real 1m21.093s +user 2m5.093s +sys 0m14.027s +Files /home/nikos/dish/evaluation//small_intermediary//minimal_sort_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_seq.time new file mode 100644 index 000000000..63c0784b5 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/minimal_sort_2_seq.time @@ -0,0 +1,4 @@ + +real 1m0.310s +user 0m48.241s +sys 0m5.143s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_16_distr_auto_split.time new file mode 100644 index 000000000..f31577cfa --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_16_distr_auto_split.time @@ -0,0 +1,1259 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_0ngujuoh/pash_tICOmsoHLK +(1) Bash variables saved in: /tmp/pash_0ngujuoh/pash_tICOmsoHLK +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_0ngujuoh/tmpv0qv3z_u ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.218 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_0ngujuoh/pash_tICOmsoHLK +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_0ngujuoh/tmpyakcepzd: +mkfifo s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_0ngujuoh/pash_R8weyenKca +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_0ngujuoh/pash_Pmk12VNXJH +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 20.935 ms +(7) Recovering BaSh variables from: /tmp/pash_0ngujuoh/pash_Pmk12VNXJH +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_0ngujuoh/pash_R8weyenKca +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_0ngujuoh/pash_fj2CYJR3ep +(1) Bash variables saved in: /tmp/pash_0ngujuoh/pash_fj2CYJR3ep +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_0ngujuoh/tmpa8h6r00i ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 142.573 ms +Total nodes after optimization: 173 + -- out of which: +Cat nodes: 0 +Eager nodes: 62 +Optimization time: 9.679 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file160, #file161], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file158, #file159], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file162, #file163], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file202, #file203], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file204, #file205], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file214, #file215], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file196, #file197], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file194, #file195], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file192, #file193], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file206, #file207], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file198, #file199], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file208, #file209], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file200, #file201], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file210, #file211], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file212, #file213], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file216, #file217], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file141, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file142, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file145, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file146, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file149, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file150, #file201], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file202], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file203], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file204], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file205], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file143, #file206], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file144, #file207], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file147, #file208], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file148, #file209], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file151, #file210], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file152, #file211], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file153, #file212], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file154, #file213], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file214], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file215], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file155, #file216], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file156, #file217], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:45:s1, #file218], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:46:s2, #file219], []) +arguments, redirs found for: comm +|-- ([#file218, #file219], []) +Backend time: 46.57 ms +Optimized script saved in: /tmp/pash_0ngujuoh/pash_OwRxkhoTdU +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_0ngujuoh/pash_fj2CYJR3ep +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_0ngujuoh/pash_OwRxkhoTdU: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file40" +mkfifo "#file42" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +{ cut -d " " -f 1 "#file48" & } +{ cut -d " " -f 1 "#file49" & } +{ cut -d " " -f 1 "#file50" & } +{ cut -d " " -f 1 "#file51" & } +{ cut -d " " -f 1 "#file52" & } +{ cut -d " " -f 1 "#file53" & } +{ cut -d " " -f 1 "#file54" & } +{ cut -d " " -f 1 "#file55" & } +{ cut -d " " -f 1 "#file56" & } +{ cut -d " " -f 1 "#file57" & } +{ cut -d " " -f 1 "#file58" & } +{ cut -d " " -f 1 "#file59" & } +{ cut -d " " -f 1 "#file60" & } +{ cut -d " " -f 1 "#file61" & } +{ cut -d " " -f 1 "#file62" & } +{ cut -d " " -f 1 "#file63" & } +{ cut -d " " -f 1 "#file64" & } +{ cut -d " " -f 1 "#file65" & } +{ cut -d " " -f 1 "#file66" & } +{ cut -d " " -f 1 "#file67" & } +{ cut -d " " -f 1 "#file68" & } +{ cut -d " " -f 1 "#file69" & } +{ cut -d " " -f 1 "#file70" & } +{ cut -d " " -f 1 "#file71" & } +{ cut -d " " -f 1 "#file72" & } +{ cut -d " " -f 1 "#file73" & } +{ cut -d " " -f 1 "#file74" & } +{ cut -d " " -f 1 "#file75" & } +{ cut -d " " -f 1 "#file76" & } +{ cut -d " " -f 1 "#file77" & } +{ cut -d " " -f 1 "#file78" & } +{ cut -d " " -f 1 "#file79" & } +{ tr [:lower] [:upper] <"#file48" >"#file80" & } +{ tr [:lower] [:upper] <"#file49" >"#file81" & } +{ tr [:lower] [:upper] <"#file50" >"#file82" & } +{ tr [:lower] [:upper] <"#file51" >"#file83" & } +{ tr [:lower] [:upper] <"#file52" >"#file84" & } +{ tr [:lower] [:upper] <"#file53" >"#file85" & } +{ tr [:lower] [:upper] <"#file54" >"#file86" & } +{ tr [:lower] [:upper] <"#file55" >"#file87" & } +{ tr [:lower] [:upper] <"#file56" >"#file88" & } +{ tr [:lower] [:upper] <"#file57" >"#file89" & } +{ tr [:lower] [:upper] <"#file58" >"#file90" & } +{ tr [:lower] [:upper] <"#file59" >"#file91" & } +{ tr [:lower] [:upper] <"#file60" >"#file92" & } +{ tr [:lower] [:upper] <"#file61" >"#file93" & } +{ tr [:lower] [:upper] <"#file62" >"#file94" & } +{ tr [:lower] [:upper] <"#file63" >"#file95" & } +{ sort <"#file64" >"#file96" & } +{ sort <"#file65" >"#file97" & } +{ sort <"#file66" >"#file98" & } +{ sort <"#file67" >"#file99" & } +{ sort <"#file68" >"#file100" & } +{ sort <"#file69" >"#file101" & } +{ sort <"#file70" >"#file102" & } +{ sort <"#file71" >"#file103" & } +{ sort <"#file72" >"#file104" & } +{ sort <"#file73" >"#file105" & } +{ sort <"#file74" >"#file106" & } +{ sort <"#file75" >"#file107" & } +{ sort <"#file76" >"#file108" & } +{ sort <"#file77" >"#file109" & } +{ sort <"#file78" >"#file110" & } +{ sort <"#file79" >"#file111" & } +{ sort -m "#file160" "#file161" >"#file112" & } +{ sort -m "#file158" "#file159" >"#file113" & } +{ sort -m "#file170" "#file171" >"#file114" & } +{ sort -m "#file162" "#file163" >"#file115" & } +{ sort -m "#file164" "#file165" >"#file116" & } +{ sort -m "#file172" "#file173" >"#file117" & } +{ sort -m "#file166" "#file167" >"#file118" & } +{ sort -m "#file168" "#file169" >"#file119" & } +{ sort -m "#file178" "#file179" >"#file120" & } +{ sort -m "#file180" "#file181" >"#file121" & } +{ sort -m "#file182" "#file183" >"#file122" & } +{ sort -m "#file184" "#file185" >"#file123" & } +{ sort -m "#file202" "#file203" >"#file124" & } +{ sort -m "#file204" "#file205" >"#file125" & } +{ sort -m "#file214" "#file215" >s2 & } +{ sort <"#file80" >"#file127" & } +{ sort <"#file81" >"#file128" & } +{ sort <"#file82" >"#file129" & } +{ sort <"#file83" >"#file130" & } +{ sort <"#file84" >"#file131" & } +{ sort <"#file85" >"#file132" & } +{ sort <"#file86" >"#file133" & } +{ sort <"#file87" >"#file134" & } +{ sort <"#file88" >"#file135" & } +{ sort <"#file89" >"#file136" & } +{ sort <"#file90" >"#file137" & } +{ sort <"#file91" >"#file138" & } +{ sort <"#file92" >"#file139" & } +{ sort <"#file93" >"#file140" & } +{ sort <"#file94" >"#file141" & } +{ sort <"#file95" >"#file142" & } +{ sort -m "#file188" "#file189" >"#file143" & } +{ sort -m "#file186" "#file187" >"#file144" & } +{ sort -m "#file196" "#file197" >"#file145" & } +{ sort -m "#file174" "#file175" >"#file146" & } +{ sort -m "#file190" "#file191" >"#file147" & } +{ sort -m "#file194" "#file195" >"#file148" & } +{ sort -m "#file176" "#file177" >"#file149" & } +{ sort -m "#file192" "#file193" >"#file150" & } +{ sort -m "#file206" "#file207" >"#file151" & } +{ sort -m "#file198" "#file199" >"#file152" & } +{ sort -m "#file208" "#file209" >"#file153" & } +{ sort -m "#file200" "#file201" >"#file154" & } +{ sort -m "#file210" "#file211" >"#file155" & } +{ sort -m "#file212" "#file213" >"#file156" & } +{ sort -m "#file216" "#file217" >s1 & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file158" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file159" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file160" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file161" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file162" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file163" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file164" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file165" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file166" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file167" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file168" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file169" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file170" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file171" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file172" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file173" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file174" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file175" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file176" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file177" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file178" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file179" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file180" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file181" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file182" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file183" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file184" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file185" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file186" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file187" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file188" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file189" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file190" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file191" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file141" "#file192" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file142" "#file193" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file194" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file195" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file196" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file197" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file145" "#file198" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file146" "#file199" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file149" "#file200" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file150" "#file201" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file202" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file203" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file204" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file205" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file143" "#file206" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file144" "#file207" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file147" "#file208" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file148" "#file209" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file151" "#file210" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file152" "#file211" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file153" "#file212" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file154" "#file213" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file214" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file215" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file155" "#file216" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file156" "#file217" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh s1 "#file218" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh s2 "#file219" "/tmp/pash_eager_intermediate_#file62" & } +{ comm -23 "#file218" "#file219" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_0ngujuoh/pash_toAzSMwo1R +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_0ngujuoh/pash_cAOTbMtMtd +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 21973.774 ms +(7) Recovering BaSh variables from: /tmp/pash_0ngujuoh/pash_cAOTbMtMtd +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_0ngujuoh/pash_toAzSMwo1R +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_0ngujuoh/pash_UDBmvgoZuk +(1) Bash variables saved in: /tmp/pash_0ngujuoh/pash_UDBmvgoZuk +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_0ngujuoh/tmph1mi5dqu ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.17 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_0ngujuoh/pash_UDBmvgoZuk +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_0ngujuoh/tmpnhcklj33: +rm s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_0ngujuoh/pash_WfFpzqX2le +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_0ngujuoh/pash_SSkXBzWVbJ +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 23.797 ms +(7) Recovering BaSh variables from: /tmp/pash_0ngujuoh/pash_SSkXBzWVbJ +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_0ngujuoh/pash_WfFpzqX2le +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_0ngujuoh/tmp82560pau +Preprocessing time: 6.354 ms + +real 0m22.770s +user 2m28.500s +sys 0m10.543s +Files /home/ubuntu/pash/evaluation//small_intermediary//set-diff_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_16_distr_no_eager.time new file mode 100644 index 000000000..91b09abd6 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_16_distr_no_eager.time @@ -0,0 +1,891 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_SPEBiH90sg +(1) Bash variables saved in: /tmp/pash_SPEBiH90sg +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.222 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_SPEBiH90sg +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hrtxhcut: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_f2efGGuRa7 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_AQw9e7tyUn +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 48.010 ms +(7) Recovering BaSh variables from: /tmp/pash_AQw9e7tyUn +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_f2efGGuRa7 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_eUtEWzd5LB +(1) Bash variables saved in: /tmp/pash_eUtEWzd5LB +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 568.214 ms +Total nodes after optimization: 111 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 19.467 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file96, #file97], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file98, #file99], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file100, #file101], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file102, #file103], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file104, #file105], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file106, #file107], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file108, #file109], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file110, #file111], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file112, #file113], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file114, #file115], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file116, #file117], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file118, #file119], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file120, #file121], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file122, #file123], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file124, #file125], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file127, #file128], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file129, #file130], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file131, #file132], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file133, #file134], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file135, #file136], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file137, #file138], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file139, #file140], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file141, #file142], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file143, #file144], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file145, #file146], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file147, #file148], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file149, #file150], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file151, #file152], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file153, #file154], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file155, #file156], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: comm +|-- ([fid:45:s1, fid:46:s2], []) +Backend time: 53.215 ms +Optimized script saved in: /tmp/pash_hmEwfPfo9o +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_eUtEWzd5LB +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hmEwfPfo9o: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file40" +mkfifo "#file42" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +{ cut -d " " -f 1 "#file48" & } +{ cut -d " " -f 1 "#file49" & } +{ cut -d " " -f 1 "#file50" & } +{ cut -d " " -f 1 "#file51" & } +{ cut -d " " -f 1 "#file52" & } +{ cut -d " " -f 1 "#file53" & } +{ cut -d " " -f 1 "#file54" & } +{ cut -d " " -f 1 "#file55" & } +{ cut -d " " -f 1 "#file56" & } +{ cut -d " " -f 1 "#file57" & } +{ cut -d " " -f 1 "#file58" & } +{ cut -d " " -f 1 "#file59" & } +{ cut -d " " -f 1 "#file60" & } +{ cut -d " " -f 1 "#file61" & } +{ cut -d " " -f 1 "#file62" & } +{ cut -d " " -f 1 "#file63" & } +{ cut -d " " -f 1 "#file64" & } +{ cut -d " " -f 1 "#file65" & } +{ cut -d " " -f 1 "#file66" & } +{ cut -d " " -f 1 "#file67" & } +{ cut -d " " -f 1 "#file68" & } +{ cut -d " " -f 1 "#file69" & } +{ cut -d " " -f 1 "#file70" & } +{ cut -d " " -f 1 "#file71" & } +{ cut -d " " -f 1 "#file72" & } +{ cut -d " " -f 1 "#file73" & } +{ cut -d " " -f 1 "#file74" & } +{ cut -d " " -f 1 "#file75" & } +{ cut -d " " -f 1 "#file76" & } +{ cut -d " " -f 1 "#file77" & } +{ cut -d " " -f 1 "#file78" & } +{ cut -d " " -f 1 "#file79" & } +{ tr [:lower] [:upper] <"#file48" >"#file80" & } +{ tr [:lower] [:upper] <"#file49" >"#file81" & } +{ tr [:lower] [:upper] <"#file50" >"#file82" & } +{ tr [:lower] [:upper] <"#file51" >"#file83" & } +{ tr [:lower] [:upper] <"#file52" >"#file84" & } +{ tr [:lower] [:upper] <"#file53" >"#file85" & } +{ tr [:lower] [:upper] <"#file54" >"#file86" & } +{ tr [:lower] [:upper] <"#file55" >"#file87" & } +{ tr [:lower] [:upper] <"#file56" >"#file88" & } +{ tr [:lower] [:upper] <"#file57" >"#file89" & } +{ tr [:lower] [:upper] <"#file58" >"#file90" & } +{ tr [:lower] [:upper] <"#file59" >"#file91" & } +{ tr [:lower] [:upper] <"#file60" >"#file92" & } +{ tr [:lower] [:upper] <"#file61" >"#file93" & } +{ tr [:lower] [:upper] <"#file62" >"#file94" & } +{ tr [:lower] [:upper] <"#file63" >"#file95" & } +{ sort <"#file64" >"#file96" & } +{ sort <"#file65" >"#file97" & } +{ sort <"#file66" >"#file98" & } +{ sort <"#file67" >"#file99" & } +{ sort <"#file68" >"#file100" & } +{ sort <"#file69" >"#file101" & } +{ sort <"#file70" >"#file102" & } +{ sort <"#file71" >"#file103" & } +{ sort <"#file72" >"#file104" & } +{ sort <"#file73" >"#file105" & } +{ sort <"#file74" >"#file106" & } +{ sort <"#file75" >"#file107" & } +{ sort <"#file76" >"#file108" & } +{ sort <"#file77" >"#file109" & } +{ sort <"#file78" >"#file110" & } +{ sort <"#file79" >"#file111" & } +{ sort -m "#file96" "#file97" >"#file112" & } +{ sort -m "#file98" "#file99" >"#file113" & } +{ sort -m "#file100" "#file101" >"#file114" & } +{ sort -m "#file102" "#file103" >"#file115" & } +{ sort -m "#file104" "#file105" >"#file116" & } +{ sort -m "#file106" "#file107" >"#file117" & } +{ sort -m "#file108" "#file109" >"#file118" & } +{ sort -m "#file110" "#file111" >"#file119" & } +{ sort -m "#file112" "#file113" >"#file120" & } +{ sort -m "#file114" "#file115" >"#file121" & } +{ sort -m "#file116" "#file117" >"#file122" & } +{ sort -m "#file118" "#file119" >"#file123" & } +{ sort -m "#file120" "#file121" >"#file124" & } +{ sort -m "#file122" "#file123" >"#file125" & } +{ sort -m "#file124" "#file125" >s2 & } +{ sort <"#file80" >"#file127" & } +{ sort <"#file81" >"#file128" & } +{ sort <"#file82" >"#file129" & } +{ sort <"#file83" >"#file130" & } +{ sort <"#file84" >"#file131" & } +{ sort <"#file85" >"#file132" & } +{ sort <"#file86" >"#file133" & } +{ sort <"#file87" >"#file134" & } +{ sort <"#file88" >"#file135" & } +{ sort <"#file89" >"#file136" & } +{ sort <"#file90" >"#file137" & } +{ sort <"#file91" >"#file138" & } +{ sort <"#file92" >"#file139" & } +{ sort <"#file93" >"#file140" & } +{ sort <"#file94" >"#file141" & } +{ sort <"#file95" >"#file142" & } +{ sort -m "#file127" "#file128" >"#file143" & } +{ sort -m "#file129" "#file130" >"#file144" & } +{ sort -m "#file131" "#file132" >"#file145" & } +{ sort -m "#file133" "#file134" >"#file146" & } +{ sort -m "#file135" "#file136" >"#file147" & } +{ sort -m "#file137" "#file138" >"#file148" & } +{ sort -m "#file139" "#file140" >"#file149" & } +{ sort -m "#file141" "#file142" >"#file150" & } +{ sort -m "#file143" "#file144" >"#file151" & } +{ sort -m "#file145" "#file146" >"#file152" & } +{ sort -m "#file147" "#file148" >"#file153" & } +{ sort -m "#file149" "#file150" >"#file154" & } +{ sort -m "#file151" "#file152" >"#file155" & } +{ sort -m "#file153" "#file154" >"#file156" & } +{ sort -m "#file155" "#file156" >s1 & } +{ comm -23 s1 s2 & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (11396) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_24Wcib8ezS +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_C4sVoCkH2w +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 45878.718 ms +(7) Recovering BaSh variables from: /tmp/pash_C4sVoCkH2w +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_24Wcib8ezS +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_bwtrMtaX2c +(1) Bash variables saved in: /tmp/pash_bwtrMtaX2c +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.21 ms +Optimization time: 0.004 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_bwtrMtaX2c +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_fncefnje: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_EEyz3BtynQ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_YiUCIA4wca +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 49.997 ms +(7) Recovering BaSh variables from: /tmp/pash_YiUCIA4wca +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_EEyz3BtynQ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_cpsfjztz +Preprocessing time: 40.938 ms + +real 0m47.472s +user 7m24.472s +sys 0m7.964s +Files /home/nikos/dish/evaluation//small_intermediary//set-diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..8fae0867c --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_16_distr_no_task_par_eager.time @@ -0,0 +1,1263 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_iMMu72TLTs +(1) Bash variables saved in: /tmp/pash_iMMu72TLTs +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.225 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_iMMu72TLTs +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_jtrotadq: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_TBxLMidE7L +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_lH3gd2qlty +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 49.562 ms +(7) Recovering BaSh variables from: /tmp/pash_lH3gd2qlty +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_TBxLMidE7L +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_pqGTyXpNtS +(1) Bash variables saved in: /tmp/pash_pqGTyXpNtS +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 586.74 ms +Total nodes after optimization: 173 + -- out of which: +Cat nodes: 0 +Eager nodes: 62 +Optimization time: 24.222 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file172, #file173], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file162, #file163], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file164, #file165], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file166, #file167], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file158, #file159], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file168, #file169], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file170, #file171], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file160, #file161], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file186, #file187], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file188, #file189], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file182, #file183], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file184, #file185], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file206, #file207], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file204, #file205], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file214, #file215], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file174, #file175], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file176, #file177], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file190, #file191], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file192, #file193], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file196, #file197], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file194, #file195], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file180, #file181], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file198, #file199], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file208, #file209], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file200, #file201], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file202, #file203], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file210, #file211], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file212, #file213], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file216, #file217], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file104, #file158], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file105, #file159], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file110, #file160], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file111, #file161], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file98, #file162], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file99, #file163], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file100, #file164], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file101, #file165], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file102, #file166], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file103, #file167], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file106, #file168], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file107, #file169], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file108, #file170], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file109, #file171], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file96, #file172], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file97, #file173], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file127, #file174], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file128, #file175], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file129, #file176], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file130, #file177], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file135, #file178], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file136, #file179], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file141, #file180], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file142, #file181], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file116, #file182], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file117, #file183], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file118, #file184], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file119, #file185], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file112, #file186], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file113, #file187], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file114, #file188], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file115, #file189], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file131, #file190], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file132, #file191], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file133, #file192], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file134, #file193], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file139, #file194], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file140, #file195], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file137, #file196], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file138, #file197], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file143, #file198], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file144, #file199], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file147, #file200], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file148, #file201], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file149, #file202], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file150, #file203], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file122, #file204], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file123, #file205], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file120, #file206], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file121, #file207], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file145, #file208], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file146, #file209], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file151, #file210], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file152, #file211], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file153, #file212], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file154, #file213], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file124, #file214], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file125, #file215], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file155, #file216], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file156, #file217], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:45:s1, #file218], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:46:s2, #file219], []) +arguments, redirs found for: comm +|-- ([#file218, #file219], []) +Backend time: 80.586 ms +Optimized script saved in: /tmp/pash_ekC70rCMH3 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_pqGTyXpNtS +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_ekC70rCMH3: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file40" +mkfifo "#file42" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +{ cut -d " " -f 1 "#file48" & } +{ cut -d " " -f 1 "#file49" & } +{ cut -d " " -f 1 "#file50" & } +{ cut -d " " -f 1 "#file51" & } +{ cut -d " " -f 1 "#file52" & } +{ cut -d " " -f 1 "#file53" & } +{ cut -d " " -f 1 "#file54" & } +{ cut -d " " -f 1 "#file55" & } +{ cut -d " " -f 1 "#file56" & } +{ cut -d " " -f 1 "#file57" & } +{ cut -d " " -f 1 "#file58" & } +{ cut -d " " -f 1 "#file59" & } +{ cut -d " " -f 1 "#file60" & } +{ cut -d " " -f 1 "#file61" & } +{ cut -d " " -f 1 "#file62" & } +{ cut -d " " -f 1 "#file63" & } +{ cut -d " " -f 1 "#file64" & } +{ cut -d " " -f 1 "#file65" & } +{ cut -d " " -f 1 "#file66" & } +{ cut -d " " -f 1 "#file67" & } +{ cut -d " " -f 1 "#file68" & } +{ cut -d " " -f 1 "#file69" & } +{ cut -d " " -f 1 "#file70" & } +{ cut -d " " -f 1 "#file71" & } +{ cut -d " " -f 1 "#file72" & } +{ cut -d " " -f 1 "#file73" & } +{ cut -d " " -f 1 "#file74" & } +{ cut -d " " -f 1 "#file75" & } +{ cut -d " " -f 1 "#file76" & } +{ cut -d " " -f 1 "#file77" & } +{ cut -d " " -f 1 "#file78" & } +{ cut -d " " -f 1 "#file79" & } +{ tr [:lower] [:upper] <"#file48" >"#file80" & } +{ tr [:lower] [:upper] <"#file49" >"#file81" & } +{ tr [:lower] [:upper] <"#file50" >"#file82" & } +{ tr [:lower] [:upper] <"#file51" >"#file83" & } +{ tr [:lower] [:upper] <"#file52" >"#file84" & } +{ tr [:lower] [:upper] <"#file53" >"#file85" & } +{ tr [:lower] [:upper] <"#file54" >"#file86" & } +{ tr [:lower] [:upper] <"#file55" >"#file87" & } +{ tr [:lower] [:upper] <"#file56" >"#file88" & } +{ tr [:lower] [:upper] <"#file57" >"#file89" & } +{ tr [:lower] [:upper] <"#file58" >"#file90" & } +{ tr [:lower] [:upper] <"#file59" >"#file91" & } +{ tr [:lower] [:upper] <"#file60" >"#file92" & } +{ tr [:lower] [:upper] <"#file61" >"#file93" & } +{ tr [:lower] [:upper] <"#file62" >"#file94" & } +{ tr [:lower] [:upper] <"#file63" >"#file95" & } +{ sort <"#file64" >"#file96" & } +{ sort <"#file65" >"#file97" & } +{ sort <"#file66" >"#file98" & } +{ sort <"#file67" >"#file99" & } +{ sort <"#file68" >"#file100" & } +{ sort <"#file69" >"#file101" & } +{ sort <"#file70" >"#file102" & } +{ sort <"#file71" >"#file103" & } +{ sort <"#file72" >"#file104" & } +{ sort <"#file73" >"#file105" & } +{ sort <"#file74" >"#file106" & } +{ sort <"#file75" >"#file107" & } +{ sort <"#file76" >"#file108" & } +{ sort <"#file77" >"#file109" & } +{ sort <"#file78" >"#file110" & } +{ sort <"#file79" >"#file111" & } +{ sort -m "#file172" "#file173" >"#file112" & } +{ sort -m "#file162" "#file163" >"#file113" & } +{ sort -m "#file164" "#file165" >"#file114" & } +{ sort -m "#file166" "#file167" >"#file115" & } +{ sort -m "#file158" "#file159" >"#file116" & } +{ sort -m "#file168" "#file169" >"#file117" & } +{ sort -m "#file170" "#file171" >"#file118" & } +{ sort -m "#file160" "#file161" >"#file119" & } +{ sort -m "#file186" "#file187" >"#file120" & } +{ sort -m "#file188" "#file189" >"#file121" & } +{ sort -m "#file182" "#file183" >"#file122" & } +{ sort -m "#file184" "#file185" >"#file123" & } +{ sort -m "#file206" "#file207" >"#file124" & } +{ sort -m "#file204" "#file205" >"#file125" & } +{ sort -m "#file214" "#file215" >s2 & } +{ sort <"#file80" >"#file127" & } +{ sort <"#file81" >"#file128" & } +{ sort <"#file82" >"#file129" & } +{ sort <"#file83" >"#file130" & } +{ sort <"#file84" >"#file131" & } +{ sort <"#file85" >"#file132" & } +{ sort <"#file86" >"#file133" & } +{ sort <"#file87" >"#file134" & } +{ sort <"#file88" >"#file135" & } +{ sort <"#file89" >"#file136" & } +{ sort <"#file90" >"#file137" & } +{ sort <"#file91" >"#file138" & } +{ sort <"#file92" >"#file139" & } +{ sort <"#file93" >"#file140" & } +{ sort <"#file94" >"#file141" & } +{ sort <"#file95" >"#file142" & } +{ sort -m "#file174" "#file175" >"#file143" & } +{ sort -m "#file176" "#file177" >"#file144" & } +{ sort -m "#file190" "#file191" >"#file145" & } +{ sort -m "#file192" "#file193" >"#file146" & } +{ sort -m "#file178" "#file179" >"#file147" & } +{ sort -m "#file196" "#file197" >"#file148" & } +{ sort -m "#file194" "#file195" >"#file149" & } +{ sort -m "#file180" "#file181" >"#file150" & } +{ sort -m "#file198" "#file199" >"#file151" & } +{ sort -m "#file208" "#file209" >"#file152" & } +{ sort -m "#file200" "#file201" >"#file153" & } +{ sort -m "#file202" "#file203" >"#file154" & } +{ sort -m "#file210" "#file211" >"#file155" & } +{ sort -m "#file212" "#file213" >"#file156" & } +{ sort -m "#file216" "#file217" >s1 & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file104" "#file158" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file105" "#file159" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file110" "#file160" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file111" "#file161" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file98" "#file162" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file99" "#file163" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file100" "#file164" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file101" "#file165" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file102" "#file166" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file103" "#file167" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file106" "#file168" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file107" "#file169" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file108" "#file170" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file109" "#file171" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file96" "#file172" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file97" "#file173" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file127" "#file174" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file128" "#file175" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file129" "#file176" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file130" "#file177" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file135" "#file178" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file136" "#file179" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file141" "#file180" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file142" "#file181" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file116" "#file182" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file117" "#file183" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file118" "#file184" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file119" "#file185" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file112" "#file186" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file113" "#file187" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file114" "#file188" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file115" "#file189" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file131" "#file190" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file132" "#file191" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file133" "#file192" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file134" "#file193" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file139" "#file194" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file140" "#file195" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file137" "#file196" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file138" "#file197" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file143" "#file198" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file144" "#file199" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file147" "#file200" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file148" "#file201" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file149" "#file202" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file150" "#file203" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file122" "#file204" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file123" "#file205" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file120" "#file206" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file121" "#file207" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file145" "#file208" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file146" "#file209" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file151" "#file210" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file152" "#file211" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file153" "#file212" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file154" "#file213" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file124" "#file214" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file125" "#file215" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file155" "#file216" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file156" "#file217" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s1 "#file218" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s2 "#file219" "/tmp/pash_eager_intermediate_#file62" & } +{ comm -23 "#file218" "#file219" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file40" +rm -f "#file42" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (12733) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_8M85eet0C2 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_fxRssefG11 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47280.834 ms +(7) Recovering BaSh variables from: /tmp/pash_fxRssefG11 +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_8M85eet0C2 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_YmuNLyVCME +(1) Bash variables saved in: /tmp/pash_YmuNLyVCME +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.212 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_YmuNLyVCME +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_urczmkbr: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_Tj9hvTn3L0 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_aw6soYvHJQ +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 52.203 ms +(7) Recovering BaSh variables from: /tmp/pash_aw6soYvHJQ +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_Tj9hvTn3L0 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_xpanbtnc +Preprocessing time: 42.269 ms + +real 0m48.927s +user 6m48.120s +sys 0m33.763s +Files /home/nikos/dish/evaluation//small_intermediary//set-diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_distr_auto_split.time new file mode 100644 index 000000000..968c1ee8e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_distr_auto_split.time @@ -0,0 +1,279 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_j6mgpqvi/pash_slyKSoJ7xg +(1) Bash variables saved in: /tmp/pash_j6mgpqvi/pash_slyKSoJ7xg +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_j6mgpqvi/tmpas0ou9ao ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.228 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_j6mgpqvi/pash_slyKSoJ7xg +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_j6mgpqvi/tmpq297wyo2: +mkfifo s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_j6mgpqvi/pash_cGwF7V9Twb +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_j6mgpqvi/pash_XHHKJzJWLH +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 20.804 ms +(7) Recovering BaSh variables from: /tmp/pash_j6mgpqvi/pash_XHHKJzJWLH +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_j6mgpqvi/pash_cGwF7V9Twb +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_j6mgpqvi/pash_LEepDrZNs2 +(1) Bash variables saved in: /tmp/pash_j6mgpqvi/pash_LEepDrZNs2 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_j6mgpqvi/tmpm7hi5jxe ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 19.44 ms +Total nodes after optimization: 19 + -- out of which: +Cat nodes: 0 +Eager nodes: 6 +Optimization time: 1.534 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file32, #file33], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file34, #file35], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file26, #file32], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file27, #file33], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file34], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file35], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:17:s1, #file36], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([fid:18:s2, #file37], []) +arguments, redirs found for: comm +|-- ([#file36, #file37], []) +Backend time: 4.129 ms +Optimized script saved in: /tmp/pash_j6mgpqvi/pash_EOeINjOb5d +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_j6mgpqvi/pash_LEepDrZNs2 +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_j6mgpqvi/pash_EOeINjOb5d: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file12" +mkfifo "#file14" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +{ cut -d " " -f 1 "#file20" & } +{ cut -d " " -f 1 "#file21" & } +{ cut -d " " -f 1 "#file22" & } +{ cut -d " " -f 1 "#file23" & } +{ tr [:lower] [:upper] <"#file20" >"#file24" & } +{ tr [:lower] [:upper] <"#file21" >"#file25" & } +{ sort <"#file22" >"#file26" & } +{ sort <"#file23" >"#file27" & } +{ sort -m "#file32" "#file33" >s2 & } +{ sort <"#file24" >"#file29" & } +{ sort <"#file25" >"#file30" & } +{ sort -m "#file34" "#file35" >s1 & } +{ /home/ubuntu/pash/runtime/eager.sh "#file26" "#file32" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file27" "#file33" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file34" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file35" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh s1 "#file36" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh s2 "#file37" "/tmp/pash_eager_intermediate_#file6" & } +{ comm -23 "#file36" "#file37" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_j6mgpqvi/pash_am25To2UHp +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_j6mgpqvi/pash_M1vOtidpF9 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 24149.145 ms +(7) Recovering BaSh variables from: /tmp/pash_j6mgpqvi/pash_M1vOtidpF9 +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_j6mgpqvi/pash_am25To2UHp +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_j6mgpqvi/pash_hSTjR31JPi +(1) Bash variables saved in: /tmp/pash_j6mgpqvi/pash_hSTjR31JPi +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_j6mgpqvi/tmp8r2a5g0e ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.184 ms +Optimization time: 0.002 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_j6mgpqvi/pash_hSTjR31JPi +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_j6mgpqvi/tmpk5imj80h: +rm s1 s2(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_j6mgpqvi/pash_4MZma2Has0 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_j6mgpqvi/pash_VJ3Z9eaX51 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 20.529 ms +(7) Recovering BaSh variables from: /tmp/pash_j6mgpqvi/pash_VJ3Z9eaX51 +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_j6mgpqvi/pash_4MZma2Has0 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_j6mgpqvi/tmpxliqxrgm +Preprocessing time: 6.229 ms + +real 0m24.770s +user 1m32.504s +sys 0m5.071s +Files /home/ubuntu/pash/evaluation//small_intermediary//set-diff_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_distr_no_eager.time new file mode 100644 index 000000000..023b9f939 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_distr_no_eager.time @@ -0,0 +1,247 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_URyslXwot5 +(1) Bash variables saved in: /tmp/pash_URyslXwot5 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.227 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_URyslXwot5 +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_maalkagu: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_luTuPjyYFY +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_G7dx5VsVke +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 46.818 ms +(7) Recovering BaSh variables from: /tmp/pash_G7dx5VsVke +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_luTuPjyYFY +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_SqalxQO147 +(1) Bash variables saved in: /tmp/pash_SqalxQO147 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 70.011 ms +Total nodes after optimization: 13 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 4.585 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file26, #file27], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file29, #file30], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: comm +|-- ([fid:17:s1, fid:18:s2], []) +Backend time: 12.872 ms +Optimized script saved in: /tmp/pash_YjU3DpMYce +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_SqalxQO147 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_YjU3DpMYce: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file12" +mkfifo "#file14" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +{ cut -d " " -f 1 "#file20" & } +{ cut -d " " -f 1 "#file21" & } +{ cut -d " " -f 1 "#file22" & } +{ cut -d " " -f 1 "#file23" & } +{ tr [:lower] [:upper] <"#file20" >"#file24" & } +{ tr [:lower] [:upper] <"#file21" >"#file25" & } +{ sort <"#file22" >"#file26" & } +{ sort <"#file23" >"#file27" & } +{ sort -m "#file26" "#file27" >s2 & } +{ sort <"#file24" >"#file29" & } +{ sort <"#file25" >"#file30" & } +{ sort -m "#file29" "#file30" >s1 & } +{ comm -23 s1 s2 & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (9481) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_0SBlEFy1qD +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_qcMCp9JnH4 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 166905.897 ms +(7) Recovering BaSh variables from: /tmp/pash_qcMCp9JnH4 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_0SBlEFy1qD +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_3zysgtoQLH +(1) Bash variables saved in: /tmp/pash_3zysgtoQLH +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.215 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_3zysgtoQLH +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_nsbmbesl: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_walsHYnL11 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_H8LQJRq7p7 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.774 ms +(7) Recovering BaSh variables from: /tmp/pash_H8LQJRq7p7 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_walsHYnL11 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_gargybef +Preprocessing time: 43.887 ms + +real 2m47.935s +user 5m38.014s +sys 0m5.689s +Files /home/nikos/dish/evaluation//small_intermediary//set-diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..0f9b9715b --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_distr_no_task_par_eager.time @@ -0,0 +1,283 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_QUaaJfO1sv +(1) Bash variables saved in: /tmp/pash_QUaaJfO1sv +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +inputs-outputs found for: mkfifo +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: mkfifo + +Compilation time: 0.228 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_QUaaJfO1sv +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_yspsnijk: +mkfifo s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_2in4JAzMUH +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_ACDvH1obc0 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 47.511 ms +(7) Recovering BaSh variables from: /tmp/pash_ACDvH1obc0 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_2in4JAzMUH +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_0LlzB1Gwje +(1) Bash variables saved in: /tmp/pash_0LlzB1Gwje +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: comm +|-- ([('option', 1), ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 75.769 ms +Total nodes after optimization: 19 + -- out of which: +Cat nodes: 0 +Eager nodes: 6 +Optimization time: 5.398 ms +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file32, #file33], [['File', ['To', 1, [['C', 115], ['C', 50]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file34, #file35], [['File', ['To', 1, [['C', 115], ['C', 49]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file26, #file32], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file27, #file33], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file29, #file34], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file30, #file35], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:17:s1, #file36], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([fid:18:s2, #file37], []) +arguments, redirs found for: comm +|-- ([#file36, #file37], []) +Backend time: 16.753 ms +Optimized script saved in: /tmp/pash_odeJBlid2x +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_0LlzB1Gwje +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_odeJBlid2x: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file12" +mkfifo "#file14" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +{ cut -d " " -f 1 "#file20" & } +{ cut -d " " -f 1 "#file21" & } +{ cut -d " " -f 1 "#file22" & } +{ cut -d " " -f 1 "#file23" & } +{ tr [:lower] [:upper] <"#file20" >"#file24" & } +{ tr [:lower] [:upper] <"#file21" >"#file25" & } +{ sort <"#file22" >"#file26" & } +{ sort <"#file23" >"#file27" & } +{ sort -m "#file32" "#file33" >s2 & } +{ sort <"#file24" >"#file29" & } +{ sort <"#file25" >"#file30" & } +{ sort -m "#file34" "#file35" >s1 & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file26" "#file32" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file27" "#file33" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file29" "#file34" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file30" "#file35" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s1 "#file36" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh s2 "#file37" "/tmp/pash_eager_intermediate_#file6" & } +{ comm -23 "#file36" "#file37" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file12" +rm -f "#file14" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (10026) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_MlooFu7sxt +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_0LMZBOSVY7 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 98486.655 ms +(7) Recovering BaSh variables from: /tmp/pash_0LMZBOSVY7 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_MlooFu7sxt +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_VH2lgpkmG3 +(1) Bash variables saved in: /tmp/pash_VH2lgpkmG3 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file3 ... Done! +inputs-outputs found for: rm +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: side-effectful found for: rm + +Compilation time: 0.218 ms +Optimization time: 0.003 ms +Compiler exited with code: 120 +(3) Recovering variables from: /tmp/pash_VH2lgpkmG3 +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_mtkxdilp: +rm s1 s2 +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_7u7kVCdH4B +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_TCb6Z6Jvij +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 48.390 ms +(7) Recovering BaSh variables from: /tmp/pash_TCb6Z6Jvij +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_7u7kVCdH4B +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_jpdzckjl +Preprocessing time: 43.926 ms + +real 1m39.523s +user 5m35.683s +sys 0m14.541s +Files /home/nikos/dish/evaluation//small_intermediary//set-diff_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_seq.time new file mode 100644 index 000000000..d846772b7 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/set-diff_2_seq.time @@ -0,0 +1,4 @@ + +real 1m18.834s +user 1m20.388s +sys 0m6.653s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_16_distr_auto_split.time new file mode 100644 index 000000000..fb0631e53 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_16_distr_auto_split.time @@ -0,0 +1,1037 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_pc26de8t/pash_n3PQ92ZtnY +(1) Bash variables saved in: /tmp/pash_pc26de8t/pash_n3PQ92ZtnY +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_pc26de8t/tmp7wrl4b42 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 71.921 ms +Total nodes after optimization: 142 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 9.088 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file157, #file158], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file143, #file144], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file145, #file146], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file147, #file148], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file149, #file150], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file151, #file152], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file153, #file154], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file155, #file156], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file159, #file160], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file161, #file162], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file163, #file164], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file165, #file166], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file167, #file168], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file169, #file170], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file171, #file172], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file141, #file172], []) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +Backend time: 26.497 ms +Optimized script saved in: /tmp/pash_pc26de8t/pash_nDwtd2mMYg +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_pc26de8t/pash_n3PQ92ZtnY +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_pc26de8t/pash_nDwtd2mMYg: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +{ xargs file "#file32" & } +{ xargs file "#file33" & } +{ xargs file "#file34" & } +{ xargs file "#file35" & } +{ xargs file "#file36" & } +{ xargs file "#file37" & } +{ xargs file "#file38" & } +{ xargs file "#file39" & } +{ xargs file "#file40" & } +{ xargs file "#file41" & } +{ xargs file "#file42" & } +{ xargs file "#file43" & } +{ xargs file "#file44" & } +{ xargs file "#file45" & } +{ xargs file "#file46" & } +{ xargs file "#file47" & } +{ grep "shell script" <"#file32" >"#file48" & } +{ grep "shell script" <"#file33" >"#file49" & } +{ grep "shell script" <"#file34" >"#file50" & } +{ grep "shell script" <"#file35" >"#file51" & } +{ grep "shell script" <"#file36" >"#file52" & } +{ grep "shell script" <"#file37" >"#file53" & } +{ grep "shell script" <"#file38" >"#file54" & } +{ grep "shell script" <"#file39" >"#file55" & } +{ grep "shell script" <"#file40" >"#file56" & } +{ grep "shell script" <"#file41" >"#file57" & } +{ grep "shell script" <"#file42" >"#file58" & } +{ grep "shell script" <"#file43" >"#file59" & } +{ grep "shell script" <"#file44" >"#file60" & } +{ grep "shell script" <"#file45" >"#file61" & } +{ grep "shell script" <"#file46" >"#file62" & } +{ grep "shell script" <"#file47" >"#file63" & } +{ cut -d: -f1 <"#file48" >"#file64" & } +{ cut -d: -f1 <"#file49" >"#file65" & } +{ cut -d: -f1 <"#file50" >"#file66" & } +{ cut -d: -f1 <"#file51" >"#file67" & } +{ cut -d: -f1 <"#file52" >"#file68" & } +{ cut -d: -f1 <"#file53" >"#file69" & } +{ cut -d: -f1 <"#file54" >"#file70" & } +{ cut -d: -f1 <"#file55" >"#file71" & } +{ cut -d: -f1 <"#file56" >"#file72" & } +{ cut -d: -f1 <"#file57" >"#file73" & } +{ cut -d: -f1 <"#file58" >"#file74" & } +{ cut -d: -f1 <"#file59" >"#file75" & } +{ cut -d: -f1 <"#file60" >"#file76" & } +{ cut -d: -f1 <"#file61" >"#file77" & } +{ cut -d: -f1 <"#file62" >"#file78" & } +{ cut -d: -f1 <"#file63" >"#file79" & } +{ xargs -L 1 wc -l <"#file64" >"#file80" & } +{ xargs -L 1 wc -l <"#file65" >"#file81" & } +{ xargs -L 1 wc -l <"#file66" >"#file82" & } +{ xargs -L 1 wc -l <"#file67" >"#file83" & } +{ xargs -L 1 wc -l <"#file68" >"#file84" & } +{ xargs -L 1 wc -l <"#file69" >"#file85" & } +{ xargs -L 1 wc -l <"#file70" >"#file86" & } +{ xargs -L 1 wc -l <"#file71" >"#file87" & } +{ xargs -L 1 wc -l <"#file72" >"#file88" & } +{ xargs -L 1 wc -l <"#file73" >"#file89" & } +{ xargs -L 1 wc -l <"#file74" >"#file90" & } +{ xargs -L 1 wc -l <"#file75" >"#file91" & } +{ xargs -L 1 wc -l <"#file76" >"#file92" & } +{ xargs -L 1 wc -l <"#file77" >"#file93" & } +{ xargs -L 1 wc -l <"#file78" >"#file94" & } +{ xargs -L 1 wc -l <"#file79" >"#file95" & } +{ grep -v "^0$" <"#file80" >"#file96" & } +{ grep -v "^0$" <"#file81" >"#file97" & } +{ grep -v "^0$" <"#file82" >"#file98" & } +{ grep -v "^0$" <"#file83" >"#file99" & } +{ grep -v "^0$" <"#file84" >"#file100" & } +{ grep -v "^0$" <"#file85" >"#file101" & } +{ grep -v "^0$" <"#file86" >"#file102" & } +{ grep -v "^0$" <"#file87" >"#file103" & } +{ grep -v "^0$" <"#file88" >"#file104" & } +{ grep -v "^0$" <"#file89" >"#file105" & } +{ grep -v "^0$" <"#file90" >"#file106" & } +{ grep -v "^0$" <"#file91" >"#file107" & } +{ grep -v "^0$" <"#file92" >"#file108" & } +{ grep -v "^0$" <"#file93" >"#file109" & } +{ grep -v "^0$" <"#file94" >"#file110" & } +{ grep -v "^0$" <"#file95" >"#file111" & } +{ sort -n <"#file96" >"#file112" & } +{ sort -n <"#file97" >"#file113" & } +{ sort -n <"#file98" >"#file114" & } +{ sort -n <"#file99" >"#file115" & } +{ sort -n <"#file100" >"#file116" & } +{ sort -n <"#file101" >"#file117" & } +{ sort -n <"#file102" >"#file118" & } +{ sort -n <"#file103" >"#file119" & } +{ sort -n <"#file104" >"#file120" & } +{ sort -n <"#file105" >"#file121" & } +{ sort -n <"#file106" >"#file122" & } +{ sort -n <"#file107" >"#file123" & } +{ sort -n <"#file108" >"#file124" & } +{ sort -n <"#file109" >"#file125" & } +{ sort -n <"#file110" >"#file126" & } +{ sort -n <"#file111" >"#file127" & } +{ sort -n -m "#file157" "#file158" >"#file128" & } +{ sort -n -m "#file143" "#file144" >"#file129" & } +{ sort -n -m "#file145" "#file146" >"#file130" & } +{ sort -n -m "#file147" "#file148" >"#file131" & } +{ sort -n -m "#file149" "#file150" >"#file132" & } +{ sort -n -m "#file151" "#file152" >"#file133" & } +{ sort -n -m "#file153" "#file154" >"#file134" & } +{ sort -n -m "#file155" "#file156" >"#file135" & } +{ sort -n -m "#file159" "#file160" >"#file136" & } +{ sort -n -m "#file161" "#file162" >"#file137" & } +{ sort -n -m "#file163" "#file164" >"#file138" & } +{ sort -n -m "#file165" "#file166" >"#file139" & } +{ sort -n -m "#file167" "#file168" >"#file140" & } +{ sort -n -m "#file169" "#file170" >"#file141" & } +{ sort -n -m "#file171" "#file172" >"#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file143" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file144" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file145" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file146" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file147" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file148" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file149" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file150" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file151" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file152" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file153" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file154" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file155" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file156" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file157" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file158" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file159" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file160" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file161" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file162" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file163" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file164" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file165" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file166" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file167" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file168" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file169" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file170" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file171" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file141" "#file172" "/tmp/pash_eager_intermediate_#file30" & } +{ head -15 <"#file29" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172"Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_pc26de8t/pash_uU2Q68plmy +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pc26de8t/pash_lEP9nhk0KF +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 428.443 ms +(7) Recovering BaSh variables from: /tmp/pash_pc26de8t/pash_lEP9nhk0KF +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_pc26de8t/pash_uU2Q68plmy +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_pc26de8t/tmp1g4l646k +Preprocessing time: 5.271 ms + +real 0m0.779s +user 0m0.860s +sys 0m0.276s +Files /home/ubuntu/pash/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_16_distr_no_eager.time new file mode 100644 index 000000000..3e8c4666e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_16_distr_no_eager.time @@ -0,0 +1,795 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_zOFIrtr8xr +(1) Bash variables saved in: /tmp/pash_zOFIrtr8xr +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 272.995 ms +Total nodes after optimization: 112 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 18.297 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file112, #file113], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file114, #file115], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file116, #file117], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file118, #file119], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file120, #file121], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file122, #file123], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file124, #file125], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file126, #file127], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file128, #file129], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file130, #file131], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file132, #file133], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file134, #file135], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file136, #file137], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file138, #file139], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file140, #file141], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +Backend time: 51.473 ms +Optimized script saved in: /tmp/pash_91Ztnkiglp +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_zOFIrtr8xr +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_91Ztnkiglp: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +{ xargs file "#file32" & } +{ xargs file "#file33" & } +{ xargs file "#file34" & } +{ xargs file "#file35" & } +{ xargs file "#file36" & } +{ xargs file "#file37" & } +{ xargs file "#file38" & } +{ xargs file "#file39" & } +{ xargs file "#file40" & } +{ xargs file "#file41" & } +{ xargs file "#file42" & } +{ xargs file "#file43" & } +{ xargs file "#file44" & } +{ xargs file "#file45" & } +{ xargs file "#file46" & } +{ xargs file "#file47" & } +{ grep "shell script" <"#file32" >"#file48" & } +{ grep "shell script" <"#file33" >"#file49" & } +{ grep "shell script" <"#file34" >"#file50" & } +{ grep "shell script" <"#file35" >"#file51" & } +{ grep "shell script" <"#file36" >"#file52" & } +{ grep "shell script" <"#file37" >"#file53" & } +{ grep "shell script" <"#file38" >"#file54" & } +{ grep "shell script" <"#file39" >"#file55" & } +{ grep "shell script" <"#file40" >"#file56" & } +{ grep "shell script" <"#file41" >"#file57" & } +{ grep "shell script" <"#file42" >"#file58" & } +{ grep "shell script" <"#file43" >"#file59" & } +{ grep "shell script" <"#file44" >"#file60" & } +{ grep "shell script" <"#file45" >"#file61" & } +{ grep "shell script" <"#file46" >"#file62" & } +{ grep "shell script" <"#file47" >"#file63" & } +{ cut -d: -f1 <"#file48" >"#file64" & } +{ cut -d: -f1 <"#file49" >"#file65" & } +{ cut -d: -f1 <"#file50" >"#file66" & } +{ cut -d: -f1 <"#file51" >"#file67" & } +{ cut -d: -f1 <"#file52" >"#file68" & } +{ cut -d: -f1 <"#file53" >"#file69" & } +{ cut -d: -f1 <"#file54" >"#file70" & } +{ cut -d: -f1 <"#file55" >"#file71" & } +{ cut -d: -f1 <"#file56" >"#file72" & } +{ cut -d: -f1 <"#file57" >"#file73" & } +{ cut -d: -f1 <"#file58" >"#file74" & } +{ cut -d: -f1 <"#file59" >"#file75" & } +{ cut -d: -f1 <"#file60" >"#file76" & } +{ cut -d: -f1 <"#file61" >"#file77" & } +{ cut -d: -f1 <"#file62" >"#file78" & } +{ cut -d: -f1 <"#file63" >"#file79" & } +{ xargs -L 1 wc -l <"#file64" >"#file80" & } +{ xargs -L 1 wc -l <"#file65" >"#file81" & } +{ xargs -L 1 wc -l <"#file66" >"#file82" & } +{ xargs -L 1 wc -l <"#file67" >"#file83" & } +{ xargs -L 1 wc -l <"#file68" >"#file84" & } +{ xargs -L 1 wc -l <"#file69" >"#file85" & } +{ xargs -L 1 wc -l <"#file70" >"#file86" & } +{ xargs -L 1 wc -l <"#file71" >"#file87" & } +{ xargs -L 1 wc -l <"#file72" >"#file88" & } +{ xargs -L 1 wc -l <"#file73" >"#file89" & } +{ xargs -L 1 wc -l <"#file74" >"#file90" & } +{ xargs -L 1 wc -l <"#file75" >"#file91" & } +{ xargs -L 1 wc -l <"#file76" >"#file92" & } +{ xargs -L 1 wc -l <"#file77" >"#file93" & } +{ xargs -L 1 wc -l <"#file78" >"#file94" & } +{ xargs -L 1 wc -l <"#file79" >"#file95" & } +{ grep -v "^0$" <"#file80" >"#file96" & } +{ grep -v "^0$" <"#file81" >"#file97" & } +{ grep -v "^0$" <"#file82" >"#file98" & } +{ grep -v "^0$" <"#file83" >"#file99" & } +{ grep -v "^0$" <"#file84" >"#file100" & } +{ grep -v "^0$" <"#file85" >"#file101" & } +{ grep -v "^0$" <"#file86" >"#file102" & } +{ grep -v "^0$" <"#file87" >"#file103" & } +{ grep -v "^0$" <"#file88" >"#file104" & } +{ grep -v "^0$" <"#file89" >"#file105" & } +{ grep -v "^0$" <"#file90" >"#file106" & } +{ grep -v "^0$" <"#file91" >"#file107" & } +{ grep -v "^0$" <"#file92" >"#file108" & } +{ grep -v "^0$" <"#file93" >"#file109" & } +{ grep -v "^0$" <"#file94" >"#file110" & } +{ grep -v "^0$" <"#file95" >"#file111" & } +{ sort -n <"#file96" >"#file112" & } +{ sort -n <"#file97" >"#file113" & } +{ sort -n <"#file98" >"#file114" & } +{ sort -n <"#file99" >"#file115" & } +{ sort -n <"#file100" >"#file116" & } +{ sort -n <"#file101" >"#file117" & } +{ sort -n <"#file102" >"#file118" & } +{ sort -n <"#file103" >"#file119" & } +{ sort -n <"#file104" >"#file120" & } +{ sort -n <"#file105" >"#file121" & } +{ sort -n <"#file106" >"#file122" & } +{ sort -n <"#file107" >"#file123" & } +{ sort -n <"#file108" >"#file124" & } +{ sort -n <"#file109" >"#file125" & } +{ sort -n <"#file110" >"#file126" & } +{ sort -n <"#file111" >"#file127" & } +{ sort -n -m "#file112" "#file113" >"#file128" & } +{ sort -n -m "#file114" "#file115" >"#file129" & } +{ sort -n -m "#file116" "#file117" >"#file130" & } +{ sort -n -m "#file118" "#file119" >"#file131" & } +{ sort -n -m "#file120" "#file121" >"#file132" & } +{ sort -n -m "#file122" "#file123" >"#file133" & } +{ sort -n -m "#file124" "#file125" >"#file134" & } +{ sort -n -m "#file126" "#file127" >"#file135" & } +{ sort -n -m "#file128" "#file129" >"#file136" & } +{ sort -n -m "#file130" "#file131" >"#file137" & } +{ sort -n -m "#file132" "#file133" >"#file138" & } +{ sort -n -m "#file134" "#file135" >"#file139" & } +{ sort -n -m "#file136" "#file137" >"#file140" & } +{ sort -n -m "#file138" "#file139" >"#file141" & } +{ sort -n -m "#file140" "#file141" >"#file29" & } +{ head -15 <"#file29" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (18824) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_IwE6VRRgDf +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_mEp8Kl87Dd +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 14979.752 ms +(7) Recovering BaSh variables from: /tmp/pash_mEp8Kl87Dd +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_IwE6VRRgDf +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_lqdlycwl +Preprocessing time: 28.407 ms + +real 0m15.727s +user 3m21.425s +sys 0m44.359s +Files /home/nikos/dish/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..3b906ecf1 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_16_distr_no_task_par_eager.time @@ -0,0 +1,975 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_EpUcZ8Nmf5 +(1) Bash variables saved in: /tmp/pash_EpUcZ8Nmf5 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 272.452 ms +Total nodes after optimization: 142 + -- out of which: +Cat nodes: 0 +Eager nodes: 30 +Optimization time: 22.481 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file157, #file158], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file145, #file146], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file143, #file144], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file147, #file148], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file149, #file150], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file151, #file152], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file153, #file154], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file155, #file156], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file161, #file162], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file159, #file160], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file163, #file164], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file165, #file166], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file167, #file168], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file169, #file170], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file171, #file172], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file116, #file143], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file117, #file144], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file114, #file145], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file115, #file146], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file118, #file147], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file119, #file148], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file120, #file149], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file121, #file150], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file122, #file151], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file123, #file152], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file124, #file153], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file125, #file154], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file126, #file155], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file127, #file156], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file112, #file157], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file113, #file158], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file130, #file159], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file131, #file160], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file128, #file161], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file129, #file162], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file132, #file163], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file133, #file164], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file134, #file165], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file135, #file166], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file136, #file167], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file137, #file168], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file138, #file169], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file139, #file170], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file140, #file171], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file141, #file172], []) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +Backend time: 64.036 ms +Optimized script saved in: /tmp/pash_s3DLWxtctb +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_EpUcZ8Nmf5 +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_s3DLWxtctb: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +{ xargs file "#file32" & } +{ xargs file "#file33" & } +{ xargs file "#file34" & } +{ xargs file "#file35" & } +{ xargs file "#file36" & } +{ xargs file "#file37" & } +{ xargs file "#file38" & } +{ xargs file "#file39" & } +{ xargs file "#file40" & } +{ xargs file "#file41" & } +{ xargs file "#file42" & } +{ xargs file "#file43" & } +{ xargs file "#file44" & } +{ xargs file "#file45" & } +{ xargs file "#file46" & } +{ xargs file "#file47" & } +{ grep "shell script" <"#file32" >"#file48" & } +{ grep "shell script" <"#file33" >"#file49" & } +{ grep "shell script" <"#file34" >"#file50" & } +{ grep "shell script" <"#file35" >"#file51" & } +{ grep "shell script" <"#file36" >"#file52" & } +{ grep "shell script" <"#file37" >"#file53" & } +{ grep "shell script" <"#file38" >"#file54" & } +{ grep "shell script" <"#file39" >"#file55" & } +{ grep "shell script" <"#file40" >"#file56" & } +{ grep "shell script" <"#file41" >"#file57" & } +{ grep "shell script" <"#file42" >"#file58" & } +{ grep "shell script" <"#file43" >"#file59" & } +{ grep "shell script" <"#file44" >"#file60" & } +{ grep "shell script" <"#file45" >"#file61" & } +{ grep "shell script" <"#file46" >"#file62" & } +{ grep "shell script" <"#file47" >"#file63" & } +{ cut -d: -f1 <"#file48" >"#file64" & } +{ cut -d: -f1 <"#file49" >"#file65" & } +{ cut -d: -f1 <"#file50" >"#file66" & } +{ cut -d: -f1 <"#file51" >"#file67" & } +{ cut -d: -f1 <"#file52" >"#file68" & } +{ cut -d: -f1 <"#file53" >"#file69" & } +{ cut -d: -f1 <"#file54" >"#file70" & } +{ cut -d: -f1 <"#file55" >"#file71" & } +{ cut -d: -f1 <"#file56" >"#file72" & } +{ cut -d: -f1 <"#file57" >"#file73" & } +{ cut -d: -f1 <"#file58" >"#file74" & } +{ cut -d: -f1 <"#file59" >"#file75" & } +{ cut -d: -f1 <"#file60" >"#file76" & } +{ cut -d: -f1 <"#file61" >"#file77" & } +{ cut -d: -f1 <"#file62" >"#file78" & } +{ cut -d: -f1 <"#file63" >"#file79" & } +{ xargs -L 1 wc -l <"#file64" >"#file80" & } +{ xargs -L 1 wc -l <"#file65" >"#file81" & } +{ xargs -L 1 wc -l <"#file66" >"#file82" & } +{ xargs -L 1 wc -l <"#file67" >"#file83" & } +{ xargs -L 1 wc -l <"#file68" >"#file84" & } +{ xargs -L 1 wc -l <"#file69" >"#file85" & } +{ xargs -L 1 wc -l <"#file70" >"#file86" & } +{ xargs -L 1 wc -l <"#file71" >"#file87" & } +{ xargs -L 1 wc -l <"#file72" >"#file88" & } +{ xargs -L 1 wc -l <"#file73" >"#file89" & } +{ xargs -L 1 wc -l <"#file74" >"#file90" & } +{ xargs -L 1 wc -l <"#file75" >"#file91" & } +{ xargs -L 1 wc -l <"#file76" >"#file92" & } +{ xargs -L 1 wc -l <"#file77" >"#file93" & } +{ xargs -L 1 wc -l <"#file78" >"#file94" & } +{ xargs -L 1 wc -l <"#file79" >"#file95" & } +{ grep -v "^0$" <"#file80" >"#file96" & } +{ grep -v "^0$" <"#file81" >"#file97" & } +{ grep -v "^0$" <"#file82" >"#file98" & } +{ grep -v "^0$" <"#file83" >"#file99" & } +{ grep -v "^0$" <"#file84" >"#file100" & } +{ grep -v "^0$" <"#file85" >"#file101" & } +{ grep -v "^0$" <"#file86" >"#file102" & } +{ grep -v "^0$" <"#file87" >"#file103" & } +{ grep -v "^0$" <"#file88" >"#file104" & } +{ grep -v "^0$" <"#file89" >"#file105" & } +{ grep -v "^0$" <"#file90" >"#file106" & } +{ grep -v "^0$" <"#file91" >"#file107" & } +{ grep -v "^0$" <"#file92" >"#file108" & } +{ grep -v "^0$" <"#file93" >"#file109" & } +{ grep -v "^0$" <"#file94" >"#file110" & } +{ grep -v "^0$" <"#file95" >"#file111" & } +{ sort -n <"#file96" >"#file112" & } +{ sort -n <"#file97" >"#file113" & } +{ sort -n <"#file98" >"#file114" & } +{ sort -n <"#file99" >"#file115" & } +{ sort -n <"#file100" >"#file116" & } +{ sort -n <"#file101" >"#file117" & } +{ sort -n <"#file102" >"#file118" & } +{ sort -n <"#file103" >"#file119" & } +{ sort -n <"#file104" >"#file120" & } +{ sort -n <"#file105" >"#file121" & } +{ sort -n <"#file106" >"#file122" & } +{ sort -n <"#file107" >"#file123" & } +{ sort -n <"#file108" >"#file124" & } +{ sort -n <"#file109" >"#file125" & } +{ sort -n <"#file110" >"#file126" & } +{ sort -n <"#file111" >"#file127" & } +{ sort -n -m "#file157" "#file158" >"#file128" & } +{ sort -n -m "#file145" "#file146" >"#file129" & } +{ sort -n -m "#file143" "#file144" >"#file130" & } +{ sort -n -m "#file147" "#file148" >"#file131" & } +{ sort -n -m "#file149" "#file150" >"#file132" & } +{ sort -n -m "#file151" "#file152" >"#file133" & } +{ sort -n -m "#file153" "#file154" >"#file134" & } +{ sort -n -m "#file155" "#file156" >"#file135" & } +{ sort -n -m "#file161" "#file162" >"#file136" & } +{ sort -n -m "#file159" "#file160" >"#file137" & } +{ sort -n -m "#file163" "#file164" >"#file138" & } +{ sort -n -m "#file165" "#file166" >"#file139" & } +{ sort -n -m "#file167" "#file168" >"#file140" & } +{ sort -n -m "#file169" "#file170" >"#file141" & } +{ sort -n -m "#file171" "#file172" >"#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file116" "#file143" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file117" "#file144" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file114" "#file145" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file115" "#file146" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file118" "#file147" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file119" "#file148" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file120" "#file149" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file121" "#file150" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file122" "#file151" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file123" "#file152" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file124" "#file153" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file125" "#file154" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file126" "#file155" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file127" "#file156" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file112" "#file157" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file113" "#file158" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file130" "#file159" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file131" "#file160" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file128" "#file161" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file129" "#file162" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file132" "#file163" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file133" "#file164" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file134" "#file165" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file135" "#file166" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file136" "#file167" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file137" "#file168" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file138" "#file169" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file139" "#file170" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file140" "#file171" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file141" "#file172" "/tmp/pash_eager_intermediate_#file30" & } +{ head -15 <"#file29" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (45429) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_rF1uK4GkyG +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_IQOmxL89tR +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 15447.115 ms +(7) Recovering BaSh variables from: /tmp/pash_IQOmxL89tR +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_rF1uK4GkyG +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_iuxuiiiu +Preprocessing time: 28.06 ms + +real 0m16.211s +user 3m25.127s +sys 0m45.735s +Files /home/nikos/dish/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_distr_auto_split.time new file mode 100644 index 000000000..f45b73bc4 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_distr_auto_split.time @@ -0,0 +1,197 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_8cibganl/pash_czgKS9p8He +(1) Bash variables saved in: /tmp/pash_8cibganl/pash_czgKS9p8He +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_8cibganl/tmpgikul1i8 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 9.872 ms +Total nodes after optimization: 16 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 2.857 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file31, #file32], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file31], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file32], []) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +Backend time: 3.837 ms +Optimized script saved in: /tmp/pash_8cibganl/pash_L9Faaj177N +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_8cibganl/pash_czgKS9p8He +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_8cibganl/pash_L9Faaj177N: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +{ xargs file "#file18" & } +{ xargs file "#file19" & } +{ grep "shell script" <"#file18" >"#file20" & } +{ grep "shell script" <"#file19" >"#file21" & } +{ cut -d: -f1 <"#file20" >"#file22" & } +{ cut -d: -f1 <"#file21" >"#file23" & } +{ xargs -L 1 wc -l <"#file22" >"#file24" & } +{ xargs -L 1 wc -l <"#file23" >"#file25" & } +{ grep -v "^0$" <"#file24" >"#file26" & } +{ grep -v "^0$" <"#file25" >"#file27" & } +{ sort -n <"#file26" >"#file28" & } +{ sort -n <"#file27" >"#file29" & } +{ sort -n -m "#file31" "#file32" >"#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file31" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file32" "/tmp/pash_eager_intermediate_#file2" & } +{ head -15 <"#file15" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32"Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_8cibganl/pash_zE4uFxvJyr +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_8cibganl/pash_H2MXwXjmVj +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 82.649 ms +(7) Recovering BaSh variables from: /tmp/pash_8cibganl/pash_H2MXwXjmVj +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_8cibganl/pash_zE4uFxvJyr +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_8cibganl/tmpsftpuydo +Preprocessing time: 5.147 ms + +real 0m0.344s +user 0m0.350s +sys 0m0.073s +Files /home/ubuntu/pash/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_distr_no_eager.time new file mode 100644 index 000000000..1d0e5b425 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_distr_no_eager.time @@ -0,0 +1,179 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_f0yuMjuXDe +(1) Bash variables saved in: /tmp/pash_f0yuMjuXDe +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 37.459 ms +Total nodes after optimization: 14 + -- out of which: +Cat nodes: 0 +Eager nodes: 0 +Optimization time: 3.957 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file28, #file29], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +Backend time: 12.097 ms +Optimized script saved in: /tmp/pash_46mgEqaUnr +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_f0yuMjuXDe +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_46mgEqaUnr: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +{ xargs file "#file18" & } +{ xargs file "#file19" & } +{ grep "shell script" <"#file18" >"#file20" & } +{ grep "shell script" <"#file19" >"#file21" & } +{ cut -d: -f1 <"#file20" >"#file22" & } +{ cut -d: -f1 <"#file21" >"#file23" & } +{ xargs -L 1 wc -l <"#file22" >"#file24" & } +{ xargs -L 1 wc -l <"#file23" >"#file25" & } +{ grep -v "^0$" <"#file24" >"#file26" & } +{ grep -v "^0$" <"#file25" >"#file27" & } +{ sort -n <"#file26" >"#file28" & } +{ sort -n <"#file27" >"#file29" & } +{ sort -n -m "#file28" "#file29" >"#file15" & } +{ head -15 <"#file15" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (70410) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_ikB9W5XsTE +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_gffFZxLoVG +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 87225.467 ms +(7) Recovering BaSh variables from: /tmp/pash_gffFZxLoVG +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_ikB9W5XsTE +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_uupovfjl +Preprocessing time: 26.939 ms + +real 1m27.675s +user 2m48.356s +sys 0m41.736s +Files /home/nikos/dish/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..91717d04d --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_distr_no_task_par_eager.time @@ -0,0 +1,191 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_6pEmVfUYst +(1) Bash variables saved in: /tmp/pash_6pEmVfUYst +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: grep +Uninterpreted operator: and +inputs-outputs found for: cut +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +Uninterpreted operator: and +class: stateless found for: cut +inputs-outputs found for: xargs +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2), ('option', 3)]) +class: stateless found for: xargs +inputs-outputs found for: grep +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) +class: stateless found for: grep +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +inputs-outputs found for: head +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: head +Compilation time: 37.099 ms +Total nodes after optimization: 16 + -- out of which: +Cat nodes: 0 +Eager nodes: 2 +Optimization time: 4.354 ms +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +Uninterpreted operator: and +arguments, redirs found for: cut +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: xargs +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: grep +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file31, #file32], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file28, #file31], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager-no-task-par.sh +|-- ([#file29, #file32], []) +arguments, redirs found for: head +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +Backend time: 14.146 ms +Optimized script saved in: /tmp/pash_czBliuyqVK +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_6pEmVfUYst +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_czBliuyqVK: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +{ xargs file "#file18" & } +{ xargs file "#file19" & } +{ grep "shell script" <"#file18" >"#file20" & } +{ grep "shell script" <"#file19" >"#file21" & } +{ cut -d: -f1 <"#file20" >"#file22" & } +{ cut -d: -f1 <"#file21" >"#file23" & } +{ xargs -L 1 wc -l <"#file22" >"#file24" & } +{ xargs -L 1 wc -l <"#file23" >"#file25" & } +{ grep -v "^0$" <"#file24" >"#file26" & } +{ grep -v "^0$" <"#file25" >"#file27" & } +{ sort -n <"#file26" >"#file28" & } +{ sort -n <"#file27" >"#file29" & } +{ sort -n -m "#file31" "#file32" >"#file15" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file28" "#file31" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager-no-task-par.sh "#file29" "#file32" "/tmp/pash_eager_intermediate_#file2" & } +{ head -15 <"#file15" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (96494) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_beq298VeSD +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_pXIFdbjFln +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 88456.218 ms +(7) Recovering BaSh variables from: /tmp/pash_pXIFdbjFln +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_beq298VeSD +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_deuqgcxs +Preprocessing time: 28.326 ms + +real 1m28.911s +user 2m53.532s +sys 0m41.920s +Files /home/nikos/dish/evaluation//small_intermediary//shortest_scripts_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_seq.time new file mode 100644 index 000000000..87957e3ff --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/shortest_scripts_2_seq.time @@ -0,0 +1,8 @@ +Usage: file [-bcEhikLlNnprsvzZ0] [--apple] [--extension] [--mime-encoding] [--mime-type] + [-e testname] [-F separator] [-f namefile] [-m magicfiles] file ... + file -C [-m magicfiles] + file [--help] + +real 0m0.011s +user 0m0.012s +sys 0m0.000s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_16_distr.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_16_distr.time new file mode 100644 index 000000000..984ecbb0e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_16_distr.time @@ -0,0 +1,328 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_5k3dfwka3N +(1) Bash variables saved in: /tmp/pash_5k3dfwka3N +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: col +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: col +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Argument: [['V', ['Normal', False, 'dict', []]]] was expanded to: /home/nikos/dish/evaluation/scripts/input/sorted_words +inputs-outputs found for: comm +|-- (['stdin', ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 289.431 ms +Total nodes after optimization: 40 + -- out of which: +Cat nodes: 1 +Eager nodes: 17 +Optimization time: 6.166 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: cat +|-- ([#file49, #file50, #file51, #file52, #file53, #file54, #file55, #file56, #file57, #file58, #file59, #file60, #file61, #file62, #file63, #file64], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file33, #file49], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file34, #file50], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file35, #file51], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file36, #file52], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file37, #file53], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file38, #file54], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file39, #file55], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file40, #file56], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file41, #file57], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file42, #file58], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file43, #file59], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file44, #file60], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file45, #file61], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file46, #file62], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file47, #file63], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file48, #file64], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file29, #file65], []) +arguments, redirs found for: comm +|-- ([#file65, fid:31:/home/nikos/dish/evaluation/scripts/input/sorted_words], []) +Backend time: 27.912 ms +Optimized script saved in: /tmp/pash_lcfNOXWgWU +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_5k3dfwka3N +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_lcfNOXWgWU: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +{ tr -cs A-Za-z "\\n" <"#file19" >"#file21" & } +{ tr A-Z a-z <"#file21" >"#file23" & } +{ tr -d "[:punct:]" <"#file23" >"#file25" & } +{ sort <"#file25" >"#file27" & } +{ uniq <"#file27" >"#file29" & } +{ col -bx "#file33" & } +{ col -bx "#file34" & } +{ col -bx "#file35" & } +{ col -bx "#file36" & } +{ col -bx "#file37" & } +{ col -bx "#file38" & } +{ col -bx "#file39" & } +{ col -bx "#file40" & } +{ col -bx "#file41" & } +{ col -bx "#file42" & } +{ col -bx "#file43" & } +{ col -bx "#file44" & } +{ col -bx "#file45" & } +{ col -bx "#file46" & } +{ col -bx "#file47" & } +{ col -bx "#file48" & } +{ cat "#file49" "#file50" "#file51" "#file52" "#file53" "#file54" "#file55" "#file56" "#file57" "#file58" "#file59" "#file60" "#file61" "#file62" "#file63" "#file64" >"#file19" & } +{ /home/nikos/dish/runtime/eager.sh "#file33" "#file49" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager.sh "#file34" "#file50" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager.sh "#file35" "#file51" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/nikos/dish/runtime/eager.sh "#file36" "#file52" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/nikos/dish/runtime/eager.sh "#file37" "#file53" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/nikos/dish/runtime/eager.sh "#file38" "#file54" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/nikos/dish/runtime/eager.sh "#file39" "#file55" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/nikos/dish/runtime/eager.sh "#file40" "#file56" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/nikos/dish/runtime/eager.sh "#file41" "#file57" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/nikos/dish/runtime/eager.sh "#file42" "#file58" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/nikos/dish/runtime/eager.sh "#file43" "#file59" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/nikos/dish/runtime/eager.sh "#file44" "#file60" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/nikos/dish/runtime/eager.sh "#file45" "#file61" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/nikos/dish/runtime/eager.sh "#file46" "#file62" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/nikos/dish/runtime/eager.sh "#file47" "#file63" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/nikos/dish/runtime/eager.sh "#file48" "#file64" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/nikos/dish/runtime/eager.sh "#file29" "#file65" "/tmp/pash_eager_intermediate_#file17" & } +{ comm -23 "#file65" /home/nikos/dish/evaluation/scripts/input/sorted_words & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (128456) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_NVJPAWIBtq +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_oXtL42I5tV +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 41591.871 ms +(7) Recovering BaSh variables from: /tmp/pash_oXtL42I5tV +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_NVJPAWIBtq +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_ogftzsdo +Preprocessing time: 27.065 ms + +real 0m42.318s +user 0m51.376s +sys 0m23.440s +Files /home/nikos/dish/evaluation//small_intermediary//spell_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_16_distr_auto_split.time new file mode 100644 index 000000000..25a9fade1 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_16_distr_auto_split.time @@ -0,0 +1,1364 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_974bh5cf/pash_W9cz7kO7fv +(1) Bash variables saved in: /tmp/pash_974bh5cf/pash_W9cz7kO7fv +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_974bh5cf/tmph_2td8jn ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: col +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: col +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Argument: [['V', ['Normal', False, 'dict', []]]] was expanded to: /home/ubuntu/pash/evaluation/scripts/input/sorted_words +inputs-outputs found for: comm +|-- (['stdin', ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 71.508 ms +Total nodes after optimization: 195 + -- out of which: +Cat nodes: 2 +Eager nodes: 93 +Optimization time: 8.646 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 54]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 55]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 56]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 49]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 57]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 50]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 52]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 50]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 51]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 52]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 49], ['C', 53]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: cat +|-- ([#file164, #file165, #file166, #file167, #file168, #file169, #file170, #file171, #file172, #file173, #file174, #file175, #file176, #file177, #file178, #file179], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file21, #file49, #file50, #file51, #file52, #file53, #file54, #file55, #file56, #file57, #file58, #file59, #file60, #file61, #file62, #file63, #file64], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file195, #file196], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file197, #file198], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file199, #file200], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file201, #file202], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file203, #file204], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file205, #file206], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file207, #file208], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file209, #file210], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file211, #file212], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file213, #file214], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file215, #file216], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file217, #file218], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file219, #file220], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file221, #file222], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file223, #file224], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file27, #file129, #file130, #file131, #file132, #file133, #file134, #file135, #file136, #file137, #file138, #file139, #file140, #file141, #file142, #file143, #file144], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: cat +|-- ([#file240, #file241, #file242, #file243, #file244, #file245, #file246, #file247, #file248, #file249, #file250, #file251, #file252, #file253, #file254, #file255], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file37, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file45, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file46, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file47, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file48, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file49, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file50, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file51, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file52, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file53, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file54, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file55, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file56, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file57, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file58, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file59, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file60, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file61, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file62, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file201], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file202], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file203], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file204], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file205], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file109, #file206], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file110, #file207], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file208], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file209], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file210], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file211], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file212], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file213], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file214], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file215], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file216], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file217], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file218], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file219], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file220], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file221], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file222], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file223], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file224], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file225], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file226], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file227], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file228], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file229], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file230], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file231], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file232], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file233], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file234], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file235], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file236], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file141, #file237], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file142, #file238], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file143, #file239], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file146, #file240], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file147, #file241], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file148, #file242], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file149, #file243], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file150, #file244], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file151, #file245], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file152, #file246], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file153, #file247], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file154, #file248], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file155, #file249], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file156, #file250], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file157, #file251], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file158, #file252], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file159, #file253], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file160, #file254], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file161, #file255], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file256], []) +arguments, redirs found for: comm +|-- ([#file256, fid:31:/home/ubuntu/pash/evaluation/scripts/input/sorted_words], []) +Backend time: 50.336 ms +Optimized script saved in: /tmp/pash_974bh5cf/pash_WA7DwGB0Gf +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_974bh5cf/pash_W9cz7kO7fv +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_974bh5cf/pash_WA7DwGB0Gf: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +rm -f "#file232" +rm -f "#file233" +rm -f "#file234" +rm -f "#file235" +rm -f "#file236" +rm -f "#file237" +rm -f "#file238" +rm -f "#file239" +rm -f "#file240" +rm -f "#file241" +rm -f "#file242" +rm -f "#file243" +rm -f "#file244" +rm -f "#file245" +rm -f "#file246" +rm -f "#file247" +rm -f "#file248" +rm -f "#file249" +rm -f "#file250" +rm -f "#file251" +rm -f "#file252" +rm -f "#file253" +rm -f "#file254" +rm -f "#file255" +rm -f "#file256" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file29" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +mkfifo "#file220" +mkfifo "#file221" +mkfifo "#file222" +mkfifo "#file223" +mkfifo "#file224" +mkfifo "#file225" +mkfifo "#file226" +mkfifo "#file227" +mkfifo "#file228" +mkfifo "#file229" +mkfifo "#file230" +mkfifo "#file231" +mkfifo "#file232" +mkfifo "#file233" +mkfifo "#file234" +mkfifo "#file235" +mkfifo "#file236" +mkfifo "#file237" +mkfifo "#file238" +mkfifo "#file239" +mkfifo "#file240" +mkfifo "#file241" +mkfifo "#file242" +mkfifo "#file243" +mkfifo "#file244" +mkfifo "#file245" +mkfifo "#file246" +mkfifo "#file247" +mkfifo "#file248" +mkfifo "#file249" +mkfifo "#file250" +mkfifo "#file251" +mkfifo "#file252" +mkfifo "#file253" +mkfifo "#file254" +mkfifo "#file255" +mkfifo "#file256" +{ tr -cs A-Za-z "\\n" <"#file19" >"#file21" & } +{ col -bx "#file33" & } +{ col -bx "#file34" & } +{ col -bx "#file35" & } +{ col -bx "#file36" & } +{ col -bx "#file37" & } +{ col -bx "#file38" & } +{ col -bx "#file39" & } +{ col -bx "#file40" & } +{ col -bx "#file41" & } +{ col -bx "#file42" & } +{ col -bx "#file43" & } +{ col -bx "#file44" & } +{ col -bx "#file45" & } +{ col -bx "#file46" & } +{ col -bx "#file47" & } +{ col -bx "#file48" & } +{ cat "#file164" "#file165" "#file166" "#file167" "#file168" "#file169" "#file170" "#file171" "#file172" "#file173" "#file174" "#file175" "#file176" "#file177" "#file178" "#file179" >"#file19" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file21" "#file49" "#file50" "#file51" "#file52" "#file53" "#file54" "#file55" "#file56" "#file57" "#file58" "#file59" "#file60" "#file61" "#file62" "#file63" "#file64" & } +{ tr A-Z a-z <"#file180" >"#file66" & } +{ tr A-Z a-z <"#file181" >"#file67" & } +{ tr A-Z a-z <"#file182" >"#file68" & } +{ tr A-Z a-z <"#file183" >"#file69" & } +{ tr A-Z a-z <"#file184" >"#file70" & } +{ tr A-Z a-z <"#file185" >"#file71" & } +{ tr A-Z a-z <"#file186" >"#file72" & } +{ tr A-Z a-z <"#file187" >"#file73" & } +{ tr A-Z a-z <"#file188" >"#file74" & } +{ tr A-Z a-z <"#file189" >"#file75" & } +{ tr A-Z a-z <"#file190" >"#file76" & } +{ tr A-Z a-z <"#file191" >"#file77" & } +{ tr A-Z a-z <"#file192" >"#file78" & } +{ tr A-Z a-z <"#file193" >"#file79" & } +{ tr A-Z a-z <"#file194" >"#file80" & } +{ tr A-Z a-z <"#file64" >"#file81" & } +{ tr -d "[:punct:]" <"#file66" >"#file82" & } +{ tr -d "[:punct:]" <"#file67" >"#file83" & } +{ tr -d "[:punct:]" <"#file68" >"#file84" & } +{ tr -d "[:punct:]" <"#file69" >"#file85" & } +{ tr -d "[:punct:]" <"#file70" >"#file86" & } +{ tr -d "[:punct:]" <"#file71" >"#file87" & } +{ tr -d "[:punct:]" <"#file72" >"#file88" & } +{ tr -d "[:punct:]" <"#file73" >"#file89" & } +{ tr -d "[:punct:]" <"#file74" >"#file90" & } +{ tr -d "[:punct:]" <"#file75" >"#file91" & } +{ tr -d "[:punct:]" <"#file76" >"#file92" & } +{ tr -d "[:punct:]" <"#file77" >"#file93" & } +{ tr -d "[:punct:]" <"#file78" >"#file94" & } +{ tr -d "[:punct:]" <"#file79" >"#file95" & } +{ tr -d "[:punct:]" <"#file80" >"#file96" & } +{ tr -d "[:punct:]" <"#file81" >"#file97" & } +{ sort <"#file82" >"#file98" & } +{ sort <"#file83" >"#file99" & } +{ sort <"#file84" >"#file100" & } +{ sort <"#file85" >"#file101" & } +{ sort <"#file86" >"#file102" & } +{ sort <"#file87" >"#file103" & } +{ sort <"#file88" >"#file104" & } +{ sort <"#file89" >"#file105" & } +{ sort <"#file90" >"#file106" & } +{ sort <"#file91" >"#file107" & } +{ sort <"#file92" >"#file108" & } +{ sort <"#file93" >"#file109" & } +{ sort <"#file94" >"#file110" & } +{ sort <"#file95" >"#file111" & } +{ sort <"#file96" >"#file112" & } +{ sort <"#file97" >"#file113" & } +{ sort -m "#file195" "#file196" >"#file114" & } +{ sort -m "#file197" "#file198" >"#file115" & } +{ sort -m "#file199" "#file200" >"#file116" & } +{ sort -m "#file201" "#file202" >"#file117" & } +{ sort -m "#file203" "#file204" >"#file118" & } +{ sort -m "#file205" "#file206" >"#file119" & } +{ sort -m "#file207" "#file208" >"#file120" & } +{ sort -m "#file209" "#file210" >"#file121" & } +{ sort -m "#file211" "#file212" >"#file122" & } +{ sort -m "#file213" "#file214" >"#file123" & } +{ sort -m "#file215" "#file216" >"#file124" & } +{ sort -m "#file217" "#file218" >"#file125" & } +{ sort -m "#file219" "#file220" >"#file126" & } +{ sort -m "#file221" "#file222" >"#file127" & } +{ sort -m "#file223" "#file224" >"#file27" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file27" "#file129" "#file130" "#file131" "#file132" "#file133" "#file134" "#file135" "#file136" "#file137" "#file138" "#file139" "#file140" "#file141" "#file142" "#file143" "#file144" & } +{ uniq <"#file225" >"#file146" & } +{ uniq <"#file226" >"#file147" & } +{ uniq <"#file227" >"#file148" & } +{ uniq <"#file228" >"#file149" & } +{ uniq <"#file229" >"#file150" & } +{ uniq <"#file230" >"#file151" & } +{ uniq <"#file231" >"#file152" & } +{ uniq <"#file232" >"#file153" & } +{ uniq <"#file233" >"#file154" & } +{ uniq <"#file234" >"#file155" & } +{ uniq <"#file235" >"#file156" & } +{ uniq <"#file236" >"#file157" & } +{ uniq <"#file237" >"#file158" & } +{ uniq <"#file238" >"#file159" & } +{ uniq <"#file239" >"#file160" & } +{ uniq <"#file144" >"#file161" & } +{ cat "#file240" "#file241" "#file242" "#file243" "#file244" "#file245" "#file246" "#file247" "#file248" "#file249" "#file250" "#file251" "#file252" "#file253" "#file254" "#file255" >"#file162" & } +{ uniq <"#file162" >"#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file164" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file165" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file166" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file167" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file37" "#file168" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file169" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file170" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file171" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file172" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file173" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file174" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file175" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file45" "#file176" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file46" "#file177" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file47" "#file178" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file48" "#file179" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file49" "#file180" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file50" "#file181" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file51" "#file182" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file52" "#file183" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file53" "#file184" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file54" "#file185" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file55" "#file186" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file56" "#file187" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file57" "#file188" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file58" "#file189" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file59" "#file190" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file60" "#file191" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file61" "#file192" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file62" "#file193" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file194" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file195" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file196" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file197" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file198" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file199" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file200" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file201" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file202" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file203" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file204" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file205" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file109" "#file206" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file110" "#file207" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file208" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file209" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file210" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file211" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file212" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file213" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file214" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file215" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file216" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file217" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file218" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file219" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file220" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file221" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file222" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file223" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file224" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file225" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file226" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file227" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file228" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file229" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file230" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file231" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file232" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file233" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file234" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file235" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file236" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file141" "#file237" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file142" "#file238" "/tmp/pash_eager_intermediate_#file75" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file143" "#file239" "/tmp/pash_eager_intermediate_#file76" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file146" "#file240" "/tmp/pash_eager_intermediate_#file77" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file147" "#file241" "/tmp/pash_eager_intermediate_#file78" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file148" "#file242" "/tmp/pash_eager_intermediate_#file79" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file149" "#file243" "/tmp/pash_eager_intermediate_#file80" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file150" "#file244" "/tmp/pash_eager_intermediate_#file81" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file151" "#file245" "/tmp/pash_eager_intermediate_#file82" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file152" "#file246" "/tmp/pash_eager_intermediate_#file83" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file153" "#file247" "/tmp/pash_eager_intermediate_#file84" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file154" "#file248" "/tmp/pash_eager_intermediate_#file85" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file155" "#file249" "/tmp/pash_eager_intermediate_#file86" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file156" "#file250" "/tmp/pash_eager_intermediate_#file87" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file157" "#file251" "/tmp/pash_eager_intermediate_#file88" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file158" "#file252" "/tmp/pash_eager_intermediate_#file89" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file159" "#file253" "/tmp/pash_eager_intermediate_#file90" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file160" "#file254" "/tmp/pash_eager_intermediate_#file91" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file161" "#file255" "/tmp/pash_eager_intermediate_#file92" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file256" "/tmp/pash_eager_intermediate_#file93" & } +{ comm -23 "#file256" /home/ubuntu/pash/evaluation/scripts/input/sorted_words & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file29" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +rm -f "#file232" +rm -f "#file233" +rm -f "#file234" +rm -f "#file235" +rm -f "#file236" +rm -f "#file237" +rm -f "#file238" +rm -f "#file239" +rm -f "#file240" +rm -f "#file241" +rm -f "#file242" +rm -f "#file243" +rm -f "#file244" +rm -f "#file245" +rm -f "#file246" +rm -f "#file247" +rm -f "#file248" +rm -f "#file249" +rm -f "#file250" +rm -f "#file251" +rm -f "#file252" +rm -f "#file253" +rm -f "#file254" +rm -f "#file255" +rm -f "#file256"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_974bh5cf/pash_5X1DXsZttG +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_974bh5cf/pash_OJ9BzljTS9 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 12032.796 ms +(7) Recovering BaSh variables from: /tmp/pash_974bh5cf/pash_OJ9BzljTS9 +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_974bh5cf/pash_5X1DXsZttG +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_974bh5cf/tmpgs82rahk +Preprocessing time: 5.103 ms + +real 0m12.402s +user 0m49.822s +sys 0m25.416s +Files /home/ubuntu/pash/evaluation//small_intermediary//spell_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_2_distr.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_2_distr.time new file mode 100644 index 000000000..fe5460b32 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_2_distr.time @@ -0,0 +1,146 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ZkgNbjKUH3 +(1) Bash variables saved in: /tmp/pash_ZkgNbjKUH3 +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: col +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: col +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Argument: [['V', ['Normal', False, 'dict', []]]] was expanded to: /home/nikos/dish/evaluation/scripts/input/sorted_words +inputs-outputs found for: comm +|-- (['stdin', ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 52.887 ms +Total nodes after optimization: 12 + -- out of which: +Cat nodes: 1 +Eager nodes: 3 +Optimization time: 1.381 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 110], ['C', 105], ['C', 107], ['C', 111], ['C', 115], ['C', 47], ['C', 100], ['C', 105], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: cat +|-- ([#file21, #file22], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file19, #file21], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file20, #file22], []) +arguments, redirs found for: /home/nikos/dish/runtime/eager.sh +|-- ([#file15, #file23], []) +arguments, redirs found for: comm +|-- ([#file23, fid:17:/home/nikos/dish/evaluation/scripts/input/sorted_words], []) +Backend time: 13.311 ms +Optimized script saved in: /tmp/pash_8V3ieKbmMd +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_ZkgNbjKUH3 +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_8V3ieKbmMd: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +{ tr -cs A-Za-z "\\n" <"#file5" >"#file7" & } +{ tr A-Z a-z <"#file7" >"#file9" & } +{ tr -d "[:punct:]" <"#file9" >"#file11" & } +{ sort <"#file11" >"#file13" & } +{ uniq <"#file13" >"#file15" & } +{ col -bx "#file19" & } +{ col -bx "#file20" & } +{ cat "#file21" "#file22" >"#file5" & } +{ /home/nikos/dish/runtime/eager.sh "#file19" "#file21" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/nikos/dish/runtime/eager.sh "#file20" "#file22" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/nikos/dish/runtime/eager.sh "#file15" "#file23" "/tmp/pash_eager_intermediate_#file3" & } +{ comm -23 "#file23" /home/nikos/dish/evaluation/scripts/input/sorted_words & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (127799) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_oX9bAflqf8 +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_KmMtwQypjo +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 40319.242 ms +(7) Recovering BaSh variables from: /tmp/pash_KmMtwQypjo +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_oX9bAflqf8 +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_gsxqpsqw +Preprocessing time: 26.982 ms + +real 0m40.791s +user 0m50.034s +sys 0m18.641s +Files /home/nikos/dish/evaluation//small_intermediary//spell_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_2_distr_auto_split.time new file mode 100644 index 000000000..8fef8ae3d --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_2_distr_auto_split.time @@ -0,0 +1,258 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_hpf7s46w/pash_tS6BkFgkQQ +(1) Bash variables saved in: /tmp/pash_hpf7s46w/pash_tS6BkFgkQQ +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_hpf7s46w/tmpvr548je2 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: col +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: stateless found for: col +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], []) + -- Warning: Overriding standard category for: uniq +Argument: [['V', ['Normal', False, 'dict', []]]] was expanded to: /home/ubuntu/pash/evaluation/scripts/input/sorted_words +inputs-outputs found for: comm +|-- (['stdin', ('option', 2)], ['stdout'], [('option', 0)]) +class: pure found for: comm +Compilation time: 14.499 ms +Total nodes after optimization: 27 + -- out of which: +Cat nodes: 2 +Eager nodes: 9 +Optimization time: 1.486 ms +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 48]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: col +|-- ([], [['File', ['From', 0, [['C', 47], ['C', 104], ['C', 111], ['C', 109], ['C', 101], ['C', 47], ['C', 117], ['C', 98], ['C', 117], ['C', 110], ['C', 116], ['C', 117], ['C', 47], ['C', 112], ['C', 97], ['C', 115], ['C', 104], ['C', 47], ['C', 101], ['C', 118], ['C', 97], ['C', 108], ['C', 117], ['C', 97], ['C', 116], ['C', 105], ['C', 111], ['C', 110], ['C', 47], ['C', 115], ['C', 109], ['C', 97], ['C', 108], ['C', 108], ['C', 95], ['C', 105], ['C', 110], ['C', 116], ['C', 101], ['C', 114], ['C', 109], ['C', 101], ['C', 100], ['C', 105], ['C', 97], ['C', 114], ['C', 121], ['C', 47], ['C', 115], ['C', 112], ['C', 108], ['C', 105], ['C', 116], ['C', 95], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 115], ['C', 47], ['C', 105], ['C', 110], ['C', 112], ['C', 117], ['C', 116], ['C', 45], ['C', 99], ['C', 104], ['C', 117], ['C', 110], ['C', 107], ['C', 45], ['C', 48], ['C', 49]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: cat +|-- ([#file38, #file39], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file7, #file21, #file22], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file41, #file42], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file13, #file31, #file32], []) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: cat +|-- ([#file44, #file45], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file19, #file38], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file20, #file39], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file21, #file40], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file41], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file29, #file42], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file31, #file43], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file44], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file45], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file15, #file46], []) +arguments, redirs found for: comm +|-- ([#file46, fid:17:/home/ubuntu/pash/evaluation/scripts/input/sorted_words], []) +Backend time: 5.834 ms +Optimized script saved in: /tmp/pash_hpf7s46w/pash_MJgbF84KWR +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_hpf7s46w/pash_tS6BkFgkQQ +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_hpf7s46w/pash_MJgbF84KWR: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file15" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +{ tr -cs A-Za-z "\\n" <"#file5" >"#file7" & } +{ col -bx "#file19" & } +{ col -bx "#file20" & } +{ cat "#file38" "#file39" >"#file5" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file7" "#file21" "#file22" & } +{ tr A-Z a-z <"#file40" >"#file24" & } +{ tr A-Z a-z <"#file22" >"#file25" & } +{ tr -d "[:punct:]" <"#file24" >"#file26" & } +{ tr -d "[:punct:]" <"#file25" >"#file27" & } +{ sort <"#file26" >"#file28" & } +{ sort <"#file27" >"#file29" & } +{ sort -m "#file41" "#file42" >"#file13" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file13" "#file31" "#file32" & } +{ uniq <"#file43" >"#file34" & } +{ uniq <"#file32" >"#file35" & } +{ cat "#file44" "#file45" >"#file36" & } +{ uniq <"#file36" >"#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file19" "#file38" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file20" "#file39" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file21" "#file40" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file41" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file29" "#file42" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file31" "#file43" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file44" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file45" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file15" "#file46" "/tmp/pash_eager_intermediate_#file9" & } +{ comm -23 "#file46" /home/ubuntu/pash/evaluation/scripts/input/sorted_words & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file15" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_hpf7s46w/pash_p9V1MzQAYQ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_hpf7s46w/pash_aLjun9ED5s +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 16001.516 ms +(7) Recovering BaSh variables from: /tmp/pash_hpf7s46w/pash_aLjun9ED5s +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_hpf7s46w/pash_p9V1MzQAYQ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_hpf7s46w/tmpp25adh7v +Preprocessing time: 4.858 ms + +real 0m16.256s +user 0m28.313s +sys 0m16.486s +Files /home/ubuntu/pash/evaluation//small_intermediary//spell_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_2_seq.time new file mode 100644 index 000000000..2d1df9ca4 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/spell_2_seq.time @@ -0,0 +1,4 @@ + +real 0m21.243s +user 0m24.037s +sys 0m8.073s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_16_distr_auto_split.time new file mode 100644 index 000000000..a80e20b08 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_16_distr_auto_split.time @@ -0,0 +1,1229 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_qjvox3if/pash_Sk4G57KUvy +(1) Bash variables saved in: /tmp/pash_qjvox3if/pash_Sk4G57KUvy +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_qjvox3if/tmpwlq84j5c ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 72.296 ms +Total nodes after optimization: 174 + -- out of which: +Cat nodes: 1 +Eager nodes: 90 +Optimization time: 6.632 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file19, #file30, #file31, #file32, #file33, #file34, #file35, #file36, #file37, #file38, #file39, #file40, #file41, #file42, #file43, #file44, #file45], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file157, #file158], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file159, #file160], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file161, #file162], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file163, #file164], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file165, #file166], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file167, #file168], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file169, #file170], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file171, #file172], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file173, #file174], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file175, #file176], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file177, #file178], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file179, #file180], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file181, #file182], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file183, #file184], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file185, #file186], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file25, #file94, #file95, #file96, #file97, #file98, #file99, #file100, #file101, #file102, #file103, #file104, #file105, #file106, #file107, #file108, #file109], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file202, #file203], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file204, #file205], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file206, #file207], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file208, #file209], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file210, #file211], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file212, #file213], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file214, #file215], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file216, #file217], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file218, #file219], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file220, #file221], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file222, #file223], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file224, #file225], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file226, #file227], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file228, #file229], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file230, #file231], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file142], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file31, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file32, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file37, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file68, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file69, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file70, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file71, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file72, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file73, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file74, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file75, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file76, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file77, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file86, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file87, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file201], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file202], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file203], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file204], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file205], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file206], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file207], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file208], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file209], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file210], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file211], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file212], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file213], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file214], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file215], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file216], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file217], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file218], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file219], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file220], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file221], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file222], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file223], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file224], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file225], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file226], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file227], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file228], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file229], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file230], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file231], []) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 46.899 ms +Optimized script saved in: /tmp/pash_qjvox3if/pash_Yow3s7kmbR +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_qjvox3if/pash_Sk4G57KUvy +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_qjvox3if/pash_Yow3s7kmbR: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +mkfifo "#file220" +mkfifo "#file221" +mkfifo "#file222" +mkfifo "#file223" +mkfifo "#file224" +mkfifo "#file225" +mkfifo "#file226" +mkfifo "#file227" +mkfifo "#file228" +mkfifo "#file229" +mkfifo "#file230" +mkfifo "#file231" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ uniq -c <"#file23" >"#file25" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file19" "#file30" "#file31" "#file32" "#file33" "#file34" "#file35" "#file36" "#file37" "#file38" "#file39" "#file40" "#file41" "#file42" "#file43" "#file44" "#file45" & } +{ tr A-Z a-z <"#file142" >"#file47" & } +{ tr A-Z a-z <"#file143" >"#file48" & } +{ tr A-Z a-z <"#file144" >"#file49" & } +{ tr A-Z a-z <"#file145" >"#file50" & } +{ tr A-Z a-z <"#file146" >"#file51" & } +{ tr A-Z a-z <"#file147" >"#file52" & } +{ tr A-Z a-z <"#file148" >"#file53" & } +{ tr A-Z a-z <"#file149" >"#file54" & } +{ tr A-Z a-z <"#file150" >"#file55" & } +{ tr A-Z a-z <"#file151" >"#file56" & } +{ tr A-Z a-z <"#file152" >"#file57" & } +{ tr A-Z a-z <"#file153" >"#file58" & } +{ tr A-Z a-z <"#file154" >"#file59" & } +{ tr A-Z a-z <"#file155" >"#file60" & } +{ tr A-Z a-z <"#file156" >"#file61" & } +{ tr A-Z a-z <"#file45" >"#file62" & } +{ sort <"#file47" >"#file63" & } +{ sort <"#file48" >"#file64" & } +{ sort <"#file49" >"#file65" & } +{ sort <"#file50" >"#file66" & } +{ sort <"#file51" >"#file67" & } +{ sort <"#file52" >"#file68" & } +{ sort <"#file53" >"#file69" & } +{ sort <"#file54" >"#file70" & } +{ sort <"#file55" >"#file71" & } +{ sort <"#file56" >"#file72" & } +{ sort <"#file57" >"#file73" & } +{ sort <"#file58" >"#file74" & } +{ sort <"#file59" >"#file75" & } +{ sort <"#file60" >"#file76" & } +{ sort <"#file61" >"#file77" & } +{ sort <"#file62" >"#file78" & } +{ sort -m "#file157" "#file158" >"#file79" & } +{ sort -m "#file159" "#file160" >"#file80" & } +{ sort -m "#file161" "#file162" >"#file81" & } +{ sort -m "#file163" "#file164" >"#file82" & } +{ sort -m "#file165" "#file166" >"#file83" & } +{ sort -m "#file167" "#file168" >"#file84" & } +{ sort -m "#file169" "#file170" >"#file85" & } +{ sort -m "#file171" "#file172" >"#file86" & } +{ sort -m "#file173" "#file174" >"#file87" & } +{ sort -m "#file175" "#file176" >"#file88" & } +{ sort -m "#file177" "#file178" >"#file89" & } +{ sort -m "#file179" "#file180" >"#file90" & } +{ sort -m "#file181" "#file182" >"#file91" & } +{ sort -m "#file183" "#file184" >"#file92" & } +{ sort -m "#file185" "#file186" >"#file23" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file25" "#file94" "#file95" "#file96" "#file97" "#file98" "#file99" "#file100" "#file101" "#file102" "#file103" "#file104" "#file105" "#file106" "#file107" "#file108" "#file109" & } +{ sort -rn <"#file187" >"#file111" & } +{ sort -rn <"#file188" >"#file112" & } +{ sort -rn <"#file189" >"#file113" & } +{ sort -rn <"#file190" >"#file114" & } +{ sort -rn <"#file191" >"#file115" & } +{ sort -rn <"#file192" >"#file116" & } +{ sort -rn <"#file193" >"#file117" & } +{ sort -rn <"#file194" >"#file118" & } +{ sort -rn <"#file195" >"#file119" & } +{ sort -rn <"#file196" >"#file120" & } +{ sort -rn <"#file197" >"#file121" & } +{ sort -rn <"#file198" >"#file122" & } +{ sort -rn <"#file199" >"#file123" & } +{ sort -rn <"#file200" >"#file124" & } +{ sort -rn <"#file201" >"#file125" & } +{ sort -rn <"#file109" >"#file126" & } +{ sort -rn -m "#file202" "#file203" >"#file127" & } +{ sort -rn -m "#file204" "#file205" >"#file128" & } +{ sort -rn -m "#file206" "#file207" >"#file129" & } +{ sort -rn -m "#file208" "#file209" >"#file130" & } +{ sort -rn -m "#file210" "#file211" >"#file131" & } +{ sort -rn -m "#file212" "#file213" >"#file132" & } +{ sort -rn -m "#file214" "#file215" >"#file133" & } +{ sort -rn -m "#file216" "#file217" >"#file134" & } +{ sort -rn -m "#file218" "#file219" >"#file135" & } +{ sort -rn -m "#file220" "#file221" >"#file136" & } +{ sort -rn -m "#file222" "#file223" >"#file137" & } +{ sort -rn -m "#file224" "#file225" >"#file138" & } +{ sort -rn -m "#file226" "#file227" >"#file139" & } +{ sort -rn -m "#file228" "#file229" >"#file140" & } +{ sort -rn -m "#file230" "#file231" >"#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file142" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file31" "#file143" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file32" "#file144" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file145" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file146" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file147" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file148" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file37" "#file149" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file150" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file151" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file152" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file153" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file154" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file155" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file156" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file157" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file158" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file159" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file160" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file161" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file68" "#file162" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file69" "#file163" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file70" "#file164" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file71" "#file165" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file72" "#file166" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file73" "#file167" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file74" "#file168" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file75" "#file169" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file76" "#file170" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file77" "#file171" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file172" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file173" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file174" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file175" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file176" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file177" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file178" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file179" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file86" "#file180" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file87" "#file181" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file182" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file183" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file184" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file185" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file186" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file187" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file188" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file189" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file190" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file191" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file192" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file193" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file194" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file195" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file196" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file197" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file198" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file199" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file200" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file201" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file202" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file203" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file204" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file205" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file206" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file207" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file208" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file209" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file210" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file211" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file212" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file213" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file214" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file215" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file216" "/tmp/pash_eager_intermediate_#file75" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file217" "/tmp/pash_eager_intermediate_#file76" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file218" "/tmp/pash_eager_intermediate_#file77" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file219" "/tmp/pash_eager_intermediate_#file78" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file220" "/tmp/pash_eager_intermediate_#file79" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file221" "/tmp/pash_eager_intermediate_#file80" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file222" "/tmp/pash_eager_intermediate_#file81" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file223" "/tmp/pash_eager_intermediate_#file82" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file224" "/tmp/pash_eager_intermediate_#file83" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file225" "/tmp/pash_eager_intermediate_#file84" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file226" "/tmp/pash_eager_intermediate_#file85" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file227" "/tmp/pash_eager_intermediate_#file86" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file228" "/tmp/pash_eager_intermediate_#file87" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file229" "/tmp/pash_eager_intermediate_#file88" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file230" "/tmp/pash_eager_intermediate_#file89" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file231" "/tmp/pash_eager_intermediate_#file90" & } +{ sed 1000q <"#file27" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_qjvox3if/pash_vTFoxhts4x +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_qjvox3if/pash_5i7F5F79VX +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 68433.896 ms +(7) Recovering BaSh variables from: /tmp/pash_qjvox3if/pash_5i7F5F79VX +/dev/fd/63: line 42: declare: PPID: readonly variable +/dev/fd/63: line 49: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 54: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_qjvox3if/pash_vTFoxhts4x +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_qjvox3if/tmppxnmsrzy +Preprocessing time: 5.161 ms + +real 1m8.797s +user 6m25.646s +sys 0m37.388s +Files /home/ubuntu/pash/evaluation//small_intermediary//topn_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_16_distr_no_eager.time new file mode 100644 index 000000000..1c68e8d81 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_16_distr_no_eager.time @@ -0,0 +1,124 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_hDxi4hHzqE +(1) Bash variables saved in: /tmp/pash_hDxi4hHzqE +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 287.057 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.352 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 15.077 ms +Optimized script saved in: /tmp/pash_3yLHzMHczX +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_hDxi4hHzqE +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_3yLHzMHczX: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ sort <"#file21" >"#file23" & } +{ uniq -c <"#file23" >"#file25" & } +{ sort -rn <"#file25" >"#file27" & } +{ sed 1000q <"#file27" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (123117) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_xGg5zmEH0G +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_7e8ctdquxe +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 414887.068 ms +(7) Recovering BaSh variables from: /tmp/pash_7e8ctdquxe +/dev/fd/63: line 51: declare: PPID: readonly variable +/dev/fd/63: line 59: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 93: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_xGg5zmEH0G +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_avwmsqfk +Preprocessing time: 27.82 ms + +real 6m55.590s +user 7m2.540s +sys 0m14.021s +Files /home/nikos/dish/evaluation//small_intermediary//topn_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..c94d1e297 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_16_distr_no_task_par_eager.time @@ -0,0 +1,124 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_IxsSHEHZ9r +(1) Bash variables saved in: /tmp/pash_IxsSHEHZ9r +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 290.146 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.489 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 15.094 ms +Optimized script saved in: /tmp/pash_xOacThWXzT +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_IxsSHEHZ9r +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_xOacThWXzT: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z "\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ sort <"#file21" >"#file23" & } +{ uniq -c <"#file23" >"#file25" & } +{ sort -rn <"#file25" >"#file27" & } +{ sed 1000q <"#file27" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (123505) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_dmUk9QDu0M +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_9swaZKcsyW +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 416562.701 ms +(7) Recovering BaSh variables from: /tmp/pash_9swaZKcsyW +/dev/fd/63: line 51: declare: PPID: readonly variable +/dev/fd/63: line 59: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 93: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_dmUk9QDu0M +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_fhdhfyeg +Preprocessing time: 28.076 ms + +real 6m57.271s +user 7m1.940s +sys 0m14.877s +Files /home/nikos/dish/evaluation//small_intermediary//topn_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_distr_auto_split.time new file mode 100644 index 000000000..a8ab0face --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_distr_auto_split.time @@ -0,0 +1,207 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_9xsjaqc5/pash_Nwt8fFnmkc +(1) Bash variables saved in: /tmp/pash_9xsjaqc5/pash_Nwt8fFnmkc +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_9xsjaqc5/tmpv0fxx74e ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 14.257 ms +Total nodes after optimization: 20 + -- out of which: +Cat nodes: 1 +Eager nodes: 6 +Optimization time: 1.094 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file5, #file16, #file17], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file31, #file32], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file11, #file24, #file25], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file34, #file35], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file16, #file30], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file21, #file31], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file22, #file32], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file24, #file33], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file27, #file34], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file35], []) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 4.233 ms +Optimized script saved in: /tmp/pash_9xsjaqc5/pash_h2nrG9Sspq +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_9xsjaqc5/pash_Nwt8fFnmkc +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_9xsjaqc5/pash_h2nrG9Sspq: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file16" +mkfifo "#file17" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ uniq -c <"#file9" >"#file11" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file5" "#file16" "#file17" & } +{ tr A-Z a-z <"#file30" >"#file19" & } +{ tr A-Z a-z <"#file17" >"#file20" & } +{ sort <"#file19" >"#file21" & } +{ sort <"#file20" >"#file22" & } +{ sort -m "#file31" "#file32" >"#file9" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file11" "#file24" "#file25" & } +{ sort -rn <"#file33" >"#file27" & } +{ sort -rn <"#file25" >"#file28" & } +{ sort -rn -m "#file34" "#file35" >"#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file16" "#file30" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file21" "#file31" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file22" "#file32" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file24" "#file33" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file27" "#file34" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file35" "/tmp/pash_eager_intermediate_#file6" & } +{ sed 1000q <"#file13" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_9xsjaqc5/pash_vrjyW79N8W +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_9xsjaqc5/pash_ob16GXLQ86 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 105119.782 ms +(7) Recovering BaSh variables from: /tmp/pash_9xsjaqc5/pash_ob16GXLQ86 +/dev/fd/63: line 28: declare: PPID: readonly variable +/dev/fd/63: line 35: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 40: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_9xsjaqc5/pash_vrjyW79N8W +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_9xsjaqc5/tmp845ktool +Preprocessing time: 4.899 ms + +real 1m45.374s +user 3m15.089s +sys 0m19.055s +Files /home/ubuntu/pash/evaluation//small_intermediary//topn_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_distr_no_eager.time new file mode 100644 index 000000000..3c3bc8766 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_distr_no_eager.time @@ -0,0 +1,110 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_92Ie1m6crn +(1) Bash variables saved in: /tmp/pash_92Ie1m6crn +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 50.346 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.282 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 8.546 ms +Optimized script saved in: /tmp/pash_tJycp8OrGp +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_92Ie1m6crn +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_tJycp8OrGp: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ sort <"#file7" >"#file9" & } +{ uniq -c <"#file9" >"#file11" & } +{ sort -rn <"#file11" >"#file13" & } +{ sed 1000q <"#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (121776) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_Dc2rklKGGZ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_FFKVFnw2nv +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 412826.113 ms +(7) Recovering BaSh variables from: /tmp/pash_FFKVFnw2nv +/dev/fd/63: line 37: declare: PPID: readonly variable +/dev/fd/63: line 45: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 79: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_Dc2rklKGGZ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_swymfuox +Preprocessing time: 28.982 ms + +real 6m53.293s +user 7m1.379s +sys 0m14.078s +Files /home/nikos/dish/evaluation//small_intermediary//topn_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..0e8e0ee13 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_distr_no_task_par_eager.time @@ -0,0 +1,110 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_S6nM3Ud78i +(1) Bash variables saved in: /tmp/pash_S6nM3Ud78i +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1), ('option', 2)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, 'N', []]], ['C', 113]] was expanded to: 1000q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 50.694 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.377 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 9.442 ms +Optimized script saved in: /tmp/pash_qro4z3SYQ2 +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_S6nM3Ud78i +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_qro4z3SYQ2: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z "\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ sort <"#file7" >"#file9" & } +{ uniq -c <"#file9" >"#file11" & } +{ sort -rn <"#file11" >"#file13" & } +{ sed 1000q <"#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (122245) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_sXZRtxNv0m +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_BLvGuILGw2 +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 414862.282 ms +(7) Recovering BaSh variables from: /tmp/pash_BLvGuILGw2 +/dev/fd/63: line 37: declare: PPID: readonly variable +/dev/fd/63: line 45: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 79: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_sXZRtxNv0m +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_dbygwyxu +Preprocessing time: 27.976 ms + +real 6m55.323s +user 7m0.524s +sys 0m13.870s +Files /home/nikos/dish/evaluation//small_intermediary//topn_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_seq.time new file mode 100644 index 000000000..decbfe3e4 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/topn_2_seq.time @@ -0,0 +1,4 @@ + +real 2m48.267s +user 2m52.534s +sys 0m8.204s diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_16_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_16_distr_auto_split.time new file mode 100644 index 000000000..e6d4807d3 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_16_distr_auto_split.time @@ -0,0 +1,1229 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_jf9jrby5/pash_VQTPKZcQoA +(1) Bash variables saved in: /tmp/pash_jf9jrby5/pash_VQTPKZcQoA +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_jf9jrby5/tmpvthcc4gv ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 70.39 ms +Total nodes after optimization: 174 + -- out of which: +Cat nodes: 1 +Eager nodes: 90 +Optimization time: 6.688 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file19, #file30, #file31, #file32, #file33, #file34, #file35, #file36, #file37, #file38, #file39, #file40, #file41, #file42, #file43, #file44, #file45], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 52], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 54], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file157, #file158], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file159, #file160], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file161, #file162], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file163, #file164], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file165, #file166], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file167, #file168], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file169, #file170], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file171, #file172], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file173, #file174], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file175, #file176], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file177, #file178], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 56], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file179, #file180], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file181, #file182], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file183, #file184], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file185, #file186], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file25, #file94, #file95, #file96, #file97, #file98, #file99, #file100, #file101, #file102, #file103, #file104, #file105, #file106, #file107, #file108, #file109], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 56], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 50]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 52]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 54]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 56]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 48], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file202, #file203], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file204, #file205], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file206, #file207], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 50], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file208, #file209], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file210, #file211], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([#file212, #file213], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file214, #file215], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 51]]]]]]]) +arguments, redirs found for: sort +|-- ([#file216, #file217], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 52]]]]]]]) +arguments, redirs found for: sort +|-- ([#file218, #file219], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([#file220, #file221], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 54]]]]]]]) +arguments, redirs found for: sort +|-- ([#file222, #file223], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([#file224, #file225], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file226, #file227], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51], ['C', 57]]]]]]]) +arguments, redirs found for: sort +|-- ([#file228, #file229], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 52], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([#file230, #file231], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file30, #file142], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file31, #file143], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file32, #file144], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file33, #file145], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file34, #file146], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file35, #file147], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file36, #file148], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file37, #file149], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file38, #file150], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file39, #file151], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file40, #file152], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file41, #file153], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file42, #file154], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file43, #file155], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file44, #file156], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file63, #file157], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file64, #file158], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file65, #file159], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file66, #file160], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file67, #file161], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file68, #file162], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file69, #file163], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file70, #file164], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file71, #file165], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file72, #file166], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file73, #file167], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file74, #file168], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file75, #file169], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file76, #file170], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file77, #file171], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file78, #file172], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file79, #file173], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file80, #file174], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file81, #file175], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file82, #file176], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file83, #file177], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file84, #file178], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file85, #file179], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file86, #file180], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file87, #file181], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file88, #file182], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file89, #file183], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file90, #file184], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file91, #file185], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file92, #file186], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file94, #file187], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file95, #file188], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file96, #file189], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file97, #file190], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file98, #file191], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file99, #file192], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file100, #file193], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file101, #file194], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file102, #file195], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file103, #file196], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file104, #file197], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file105, #file198], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file106, #file199], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file107, #file200], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file108, #file201], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file111, #file202], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file112, #file203], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file113, #file204], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file114, #file205], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file115, #file206], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file116, #file207], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file117, #file208], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file118, #file209], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file119, #file210], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file120, #file211], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file121, #file212], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file122, #file213], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file123, #file214], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file124, #file215], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file125, #file216], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file126, #file217], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file127, #file218], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file128, #file219], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file129, #file220], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file130, #file221], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file131, #file222], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file132, #file223], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file133, #file224], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file134, #file225], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file135, #file226], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file136, #file227], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file137, #file228], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file138, #file229], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file139, #file230], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file140, #file231], []) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 45.068 ms +Optimized script saved in: /tmp/pash_jf9jrby5/pash_ZsGKOAfMxB +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_jf9jrby5/pash_VQTPKZcQoA +/dev/fd/63: line 40: declare: PPID: readonly variable +/dev/fd/63: line 47: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 52: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_jf9jrby5/pash_ZsGKOAfMxB: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +mkfifo "#file36" +mkfifo "#file37" +mkfifo "#file38" +mkfifo "#file39" +mkfifo "#file40" +mkfifo "#file41" +mkfifo "#file42" +mkfifo "#file43" +mkfifo "#file44" +mkfifo "#file45" +mkfifo "#file46" +mkfifo "#file47" +mkfifo "#file48" +mkfifo "#file49" +mkfifo "#file50" +mkfifo "#file51" +mkfifo "#file52" +mkfifo "#file53" +mkfifo "#file54" +mkfifo "#file55" +mkfifo "#file56" +mkfifo "#file57" +mkfifo "#file58" +mkfifo "#file59" +mkfifo "#file60" +mkfifo "#file61" +mkfifo "#file62" +mkfifo "#file63" +mkfifo "#file64" +mkfifo "#file65" +mkfifo "#file66" +mkfifo "#file67" +mkfifo "#file68" +mkfifo "#file69" +mkfifo "#file70" +mkfifo "#file71" +mkfifo "#file72" +mkfifo "#file73" +mkfifo "#file74" +mkfifo "#file75" +mkfifo "#file76" +mkfifo "#file77" +mkfifo "#file78" +mkfifo "#file79" +mkfifo "#file80" +mkfifo "#file81" +mkfifo "#file82" +mkfifo "#file83" +mkfifo "#file84" +mkfifo "#file85" +mkfifo "#file86" +mkfifo "#file87" +mkfifo "#file88" +mkfifo "#file89" +mkfifo "#file90" +mkfifo "#file91" +mkfifo "#file92" +mkfifo "#file93" +mkfifo "#file94" +mkfifo "#file95" +mkfifo "#file96" +mkfifo "#file97" +mkfifo "#file98" +mkfifo "#file99" +mkfifo "#file100" +mkfifo "#file101" +mkfifo "#file102" +mkfifo "#file103" +mkfifo "#file104" +mkfifo "#file105" +mkfifo "#file106" +mkfifo "#file107" +mkfifo "#file108" +mkfifo "#file109" +mkfifo "#file110" +mkfifo "#file111" +mkfifo "#file112" +mkfifo "#file113" +mkfifo "#file114" +mkfifo "#file115" +mkfifo "#file116" +mkfifo "#file117" +mkfifo "#file118" +mkfifo "#file119" +mkfifo "#file120" +mkfifo "#file121" +mkfifo "#file122" +mkfifo "#file123" +mkfifo "#file124" +mkfifo "#file125" +mkfifo "#file126" +mkfifo "#file127" +mkfifo "#file128" +mkfifo "#file129" +mkfifo "#file130" +mkfifo "#file131" +mkfifo "#file132" +mkfifo "#file133" +mkfifo "#file134" +mkfifo "#file135" +mkfifo "#file136" +mkfifo "#file137" +mkfifo "#file138" +mkfifo "#file139" +mkfifo "#file140" +mkfifo "#file141" +mkfifo "#file142" +mkfifo "#file143" +mkfifo "#file144" +mkfifo "#file145" +mkfifo "#file146" +mkfifo "#file147" +mkfifo "#file148" +mkfifo "#file149" +mkfifo "#file150" +mkfifo "#file151" +mkfifo "#file152" +mkfifo "#file153" +mkfifo "#file154" +mkfifo "#file155" +mkfifo "#file156" +mkfifo "#file157" +mkfifo "#file158" +mkfifo "#file159" +mkfifo "#file160" +mkfifo "#file161" +mkfifo "#file162" +mkfifo "#file163" +mkfifo "#file164" +mkfifo "#file165" +mkfifo "#file166" +mkfifo "#file167" +mkfifo "#file168" +mkfifo "#file169" +mkfifo "#file170" +mkfifo "#file171" +mkfifo "#file172" +mkfifo "#file173" +mkfifo "#file174" +mkfifo "#file175" +mkfifo "#file176" +mkfifo "#file177" +mkfifo "#file178" +mkfifo "#file179" +mkfifo "#file180" +mkfifo "#file181" +mkfifo "#file182" +mkfifo "#file183" +mkfifo "#file184" +mkfifo "#file185" +mkfifo "#file186" +mkfifo "#file187" +mkfifo "#file188" +mkfifo "#file189" +mkfifo "#file190" +mkfifo "#file191" +mkfifo "#file192" +mkfifo "#file193" +mkfifo "#file194" +mkfifo "#file195" +mkfifo "#file196" +mkfifo "#file197" +mkfifo "#file198" +mkfifo "#file199" +mkfifo "#file200" +mkfifo "#file201" +mkfifo "#file202" +mkfifo "#file203" +mkfifo "#file204" +mkfifo "#file205" +mkfifo "#file206" +mkfifo "#file207" +mkfifo "#file208" +mkfifo "#file209" +mkfifo "#file210" +mkfifo "#file211" +mkfifo "#file212" +mkfifo "#file213" +mkfifo "#file214" +mkfifo "#file215" +mkfifo "#file216" +mkfifo "#file217" +mkfifo "#file218" +mkfifo "#file219" +mkfifo "#file220" +mkfifo "#file221" +mkfifo "#file222" +mkfifo "#file223" +mkfifo "#file224" +mkfifo "#file225" +mkfifo "#file226" +mkfifo "#file227" +mkfifo "#file228" +mkfifo "#file229" +mkfifo "#file230" +mkfifo "#file231" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z"\\n" <"#file17" >"#file19" & } +{ uniq -c <"#file23" >"#file25" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file19" "#file30" "#file31" "#file32" "#file33" "#file34" "#file35" "#file36" "#file37" "#file38" "#file39" "#file40" "#file41" "#file42" "#file43" "#file44" "#file45" & } +{ tr A-Z a-z <"#file142" >"#file47" & } +{ tr A-Z a-z <"#file143" >"#file48" & } +{ tr A-Z a-z <"#file144" >"#file49" & } +{ tr A-Z a-z <"#file145" >"#file50" & } +{ tr A-Z a-z <"#file146" >"#file51" & } +{ tr A-Z a-z <"#file147" >"#file52" & } +{ tr A-Z a-z <"#file148" >"#file53" & } +{ tr A-Z a-z <"#file149" >"#file54" & } +{ tr A-Z a-z <"#file150" >"#file55" & } +{ tr A-Z a-z <"#file151" >"#file56" & } +{ tr A-Z a-z <"#file152" >"#file57" & } +{ tr A-Z a-z <"#file153" >"#file58" & } +{ tr A-Z a-z <"#file154" >"#file59" & } +{ tr A-Z a-z <"#file155" >"#file60" & } +{ tr A-Z a-z <"#file156" >"#file61" & } +{ tr A-Z a-z <"#file45" >"#file62" & } +{ sort <"#file47" >"#file63" & } +{ sort <"#file48" >"#file64" & } +{ sort <"#file49" >"#file65" & } +{ sort <"#file50" >"#file66" & } +{ sort <"#file51" >"#file67" & } +{ sort <"#file52" >"#file68" & } +{ sort <"#file53" >"#file69" & } +{ sort <"#file54" >"#file70" & } +{ sort <"#file55" >"#file71" & } +{ sort <"#file56" >"#file72" & } +{ sort <"#file57" >"#file73" & } +{ sort <"#file58" >"#file74" & } +{ sort <"#file59" >"#file75" & } +{ sort <"#file60" >"#file76" & } +{ sort <"#file61" >"#file77" & } +{ sort <"#file62" >"#file78" & } +{ sort -m "#file157" "#file158" >"#file79" & } +{ sort -m "#file159" "#file160" >"#file80" & } +{ sort -m "#file161" "#file162" >"#file81" & } +{ sort -m "#file163" "#file164" >"#file82" & } +{ sort -m "#file165" "#file166" >"#file83" & } +{ sort -m "#file167" "#file168" >"#file84" & } +{ sort -m "#file169" "#file170" >"#file85" & } +{ sort -m "#file171" "#file172" >"#file86" & } +{ sort -m "#file173" "#file174" >"#file87" & } +{ sort -m "#file175" "#file176" >"#file88" & } +{ sort -m "#file177" "#file178" >"#file89" & } +{ sort -m "#file179" "#file180" >"#file90" & } +{ sort -m "#file181" "#file182" >"#file91" & } +{ sort -m "#file183" "#file184" >"#file92" & } +{ sort -m "#file185" "#file186" >"#file23" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file25" "#file94" "#file95" "#file96" "#file97" "#file98" "#file99" "#file100" "#file101" "#file102" "#file103" "#file104" "#file105" "#file106" "#file107" "#file108" "#file109" & } +{ sort -rn <"#file187" >"#file111" & } +{ sort -rn <"#file188" >"#file112" & } +{ sort -rn <"#file189" >"#file113" & } +{ sort -rn <"#file190" >"#file114" & } +{ sort -rn <"#file191" >"#file115" & } +{ sort -rn <"#file192" >"#file116" & } +{ sort -rn <"#file193" >"#file117" & } +{ sort -rn <"#file194" >"#file118" & } +{ sort -rn <"#file195" >"#file119" & } +{ sort -rn <"#file196" >"#file120" & } +{ sort -rn <"#file197" >"#file121" & } +{ sort -rn <"#file198" >"#file122" & } +{ sort -rn <"#file199" >"#file123" & } +{ sort -rn <"#file200" >"#file124" & } +{ sort -rn <"#file201" >"#file125" & } +{ sort -rn <"#file109" >"#file126" & } +{ sort -rn -m "#file202" "#file203" >"#file127" & } +{ sort -rn -m "#file204" "#file205" >"#file128" & } +{ sort -rn -m "#file206" "#file207" >"#file129" & } +{ sort -rn -m "#file208" "#file209" >"#file130" & } +{ sort -rn -m "#file210" "#file211" >"#file131" & } +{ sort -rn -m "#file212" "#file213" >"#file132" & } +{ sort -rn -m "#file214" "#file215" >"#file133" & } +{ sort -rn -m "#file216" "#file217" >"#file134" & } +{ sort -rn -m "#file218" "#file219" >"#file135" & } +{ sort -rn -m "#file220" "#file221" >"#file136" & } +{ sort -rn -m "#file222" "#file223" >"#file137" & } +{ sort -rn -m "#file224" "#file225" >"#file138" & } +{ sort -rn -m "#file226" "#file227" >"#file139" & } +{ sort -rn -m "#file228" "#file229" >"#file140" & } +{ sort -rn -m "#file230" "#file231" >"#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file30" "#file142" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file31" "#file143" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file32" "#file144" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file33" "#file145" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file34" "#file146" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file35" "#file147" "/tmp/pash_eager_intermediate_#file6" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file36" "#file148" "/tmp/pash_eager_intermediate_#file7" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file37" "#file149" "/tmp/pash_eager_intermediate_#file8" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file38" "#file150" "/tmp/pash_eager_intermediate_#file9" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file39" "#file151" "/tmp/pash_eager_intermediate_#file10" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file40" "#file152" "/tmp/pash_eager_intermediate_#file11" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file41" "#file153" "/tmp/pash_eager_intermediate_#file12" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file42" "#file154" "/tmp/pash_eager_intermediate_#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file43" "#file155" "/tmp/pash_eager_intermediate_#file14" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file44" "#file156" "/tmp/pash_eager_intermediate_#file15" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file63" "#file157" "/tmp/pash_eager_intermediate_#file16" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file64" "#file158" "/tmp/pash_eager_intermediate_#file17" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file65" "#file159" "/tmp/pash_eager_intermediate_#file18" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file66" "#file160" "/tmp/pash_eager_intermediate_#file19" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file67" "#file161" "/tmp/pash_eager_intermediate_#file20" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file68" "#file162" "/tmp/pash_eager_intermediate_#file21" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file69" "#file163" "/tmp/pash_eager_intermediate_#file22" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file70" "#file164" "/tmp/pash_eager_intermediate_#file23" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file71" "#file165" "/tmp/pash_eager_intermediate_#file24" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file72" "#file166" "/tmp/pash_eager_intermediate_#file25" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file73" "#file167" "/tmp/pash_eager_intermediate_#file26" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file74" "#file168" "/tmp/pash_eager_intermediate_#file27" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file75" "#file169" "/tmp/pash_eager_intermediate_#file28" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file76" "#file170" "/tmp/pash_eager_intermediate_#file29" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file77" "#file171" "/tmp/pash_eager_intermediate_#file30" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file78" "#file172" "/tmp/pash_eager_intermediate_#file31" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file79" "#file173" "/tmp/pash_eager_intermediate_#file32" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file80" "#file174" "/tmp/pash_eager_intermediate_#file33" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file81" "#file175" "/tmp/pash_eager_intermediate_#file34" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file82" "#file176" "/tmp/pash_eager_intermediate_#file35" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file83" "#file177" "/tmp/pash_eager_intermediate_#file36" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file84" "#file178" "/tmp/pash_eager_intermediate_#file37" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file85" "#file179" "/tmp/pash_eager_intermediate_#file38" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file86" "#file180" "/tmp/pash_eager_intermediate_#file39" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file87" "#file181" "/tmp/pash_eager_intermediate_#file40" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file88" "#file182" "/tmp/pash_eager_intermediate_#file41" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file89" "#file183" "/tmp/pash_eager_intermediate_#file42" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file90" "#file184" "/tmp/pash_eager_intermediate_#file43" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file91" "#file185" "/tmp/pash_eager_intermediate_#file44" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file92" "#file186" "/tmp/pash_eager_intermediate_#file45" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file94" "#file187" "/tmp/pash_eager_intermediate_#file46" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file95" "#file188" "/tmp/pash_eager_intermediate_#file47" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file96" "#file189" "/tmp/pash_eager_intermediate_#file48" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file97" "#file190" "/tmp/pash_eager_intermediate_#file49" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file98" "#file191" "/tmp/pash_eager_intermediate_#file50" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file99" "#file192" "/tmp/pash_eager_intermediate_#file51" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file100" "#file193" "/tmp/pash_eager_intermediate_#file52" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file101" "#file194" "/tmp/pash_eager_intermediate_#file53" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file102" "#file195" "/tmp/pash_eager_intermediate_#file54" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file103" "#file196" "/tmp/pash_eager_intermediate_#file55" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file104" "#file197" "/tmp/pash_eager_intermediate_#file56" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file105" "#file198" "/tmp/pash_eager_intermediate_#file57" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file106" "#file199" "/tmp/pash_eager_intermediate_#file58" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file107" "#file200" "/tmp/pash_eager_intermediate_#file59" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file108" "#file201" "/tmp/pash_eager_intermediate_#file60" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file111" "#file202" "/tmp/pash_eager_intermediate_#file61" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file112" "#file203" "/tmp/pash_eager_intermediate_#file62" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file113" "#file204" "/tmp/pash_eager_intermediate_#file63" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file114" "#file205" "/tmp/pash_eager_intermediate_#file64" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file115" "#file206" "/tmp/pash_eager_intermediate_#file65" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file116" "#file207" "/tmp/pash_eager_intermediate_#file66" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file117" "#file208" "/tmp/pash_eager_intermediate_#file67" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file118" "#file209" "/tmp/pash_eager_intermediate_#file68" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file119" "#file210" "/tmp/pash_eager_intermediate_#file69" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file120" "#file211" "/tmp/pash_eager_intermediate_#file70" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file121" "#file212" "/tmp/pash_eager_intermediate_#file71" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file122" "#file213" "/tmp/pash_eager_intermediate_#file72" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file123" "#file214" "/tmp/pash_eager_intermediate_#file73" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file124" "#file215" "/tmp/pash_eager_intermediate_#file74" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file125" "#file216" "/tmp/pash_eager_intermediate_#file75" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file126" "#file217" "/tmp/pash_eager_intermediate_#file76" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file127" "#file218" "/tmp/pash_eager_intermediate_#file77" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file128" "#file219" "/tmp/pash_eager_intermediate_#file78" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file129" "#file220" "/tmp/pash_eager_intermediate_#file79" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file130" "#file221" "/tmp/pash_eager_intermediate_#file80" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file131" "#file222" "/tmp/pash_eager_intermediate_#file81" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file132" "#file223" "/tmp/pash_eager_intermediate_#file82" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file133" "#file224" "/tmp/pash_eager_intermediate_#file83" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file134" "#file225" "/tmp/pash_eager_intermediate_#file84" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file135" "#file226" "/tmp/pash_eager_intermediate_#file85" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file136" "#file227" "/tmp/pash_eager_intermediate_#file86" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file137" "#file228" "/tmp/pash_eager_intermediate_#file87" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file138" "#file229" "/tmp/pash_eager_intermediate_#file88" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file139" "#file230" "/tmp/pash_eager_intermediate_#file89" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file140" "#file231" "/tmp/pash_eager_intermediate_#file90" & } +{ sed q <"#file27" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +rm -f "#file36" +rm -f "#file37" +rm -f "#file38" +rm -f "#file39" +rm -f "#file40" +rm -f "#file41" +rm -f "#file42" +rm -f "#file43" +rm -f "#file44" +rm -f "#file45" +rm -f "#file46" +rm -f "#file47" +rm -f "#file48" +rm -f "#file49" +rm -f "#file50" +rm -f "#file51" +rm -f "#file52" +rm -f "#file53" +rm -f "#file54" +rm -f "#file55" +rm -f "#file56" +rm -f "#file57" +rm -f "#file58" +rm -f "#file59" +rm -f "#file60" +rm -f "#file61" +rm -f "#file62" +rm -f "#file63" +rm -f "#file64" +rm -f "#file65" +rm -f "#file66" +rm -f "#file67" +rm -f "#file68" +rm -f "#file69" +rm -f "#file70" +rm -f "#file71" +rm -f "#file72" +rm -f "#file73" +rm -f "#file74" +rm -f "#file75" +rm -f "#file76" +rm -f "#file77" +rm -f "#file78" +rm -f "#file79" +rm -f "#file80" +rm -f "#file81" +rm -f "#file82" +rm -f "#file83" +rm -f "#file84" +rm -f "#file85" +rm -f "#file86" +rm -f "#file87" +rm -f "#file88" +rm -f "#file89" +rm -f "#file90" +rm -f "#file91" +rm -f "#file92" +rm -f "#file93" +rm -f "#file94" +rm -f "#file95" +rm -f "#file96" +rm -f "#file97" +rm -f "#file98" +rm -f "#file99" +rm -f "#file100" +rm -f "#file101" +rm -f "#file102" +rm -f "#file103" +rm -f "#file104" +rm -f "#file105" +rm -f "#file106" +rm -f "#file107" +rm -f "#file108" +rm -f "#file109" +rm -f "#file110" +rm -f "#file111" +rm -f "#file112" +rm -f "#file113" +rm -f "#file114" +rm -f "#file115" +rm -f "#file116" +rm -f "#file117" +rm -f "#file118" +rm -f "#file119" +rm -f "#file120" +rm -f "#file121" +rm -f "#file122" +rm -f "#file123" +rm -f "#file124" +rm -f "#file125" +rm -f "#file126" +rm -f "#file127" +rm -f "#file128" +rm -f "#file129" +rm -f "#file130" +rm -f "#file131" +rm -f "#file132" +rm -f "#file133" +rm -f "#file134" +rm -f "#file135" +rm -f "#file136" +rm -f "#file137" +rm -f "#file138" +rm -f "#file139" +rm -f "#file140" +rm -f "#file141" +rm -f "#file142" +rm -f "#file143" +rm -f "#file144" +rm -f "#file145" +rm -f "#file146" +rm -f "#file147" +rm -f "#file148" +rm -f "#file149" +rm -f "#file150" +rm -f "#file151" +rm -f "#file152" +rm -f "#file153" +rm -f "#file154" +rm -f "#file155" +rm -f "#file156" +rm -f "#file157" +rm -f "#file158" +rm -f "#file159" +rm -f "#file160" +rm -f "#file161" +rm -f "#file162" +rm -f "#file163" +rm -f "#file164" +rm -f "#file165" +rm -f "#file166" +rm -f "#file167" +rm -f "#file168" +rm -f "#file169" +rm -f "#file170" +rm -f "#file171" +rm -f "#file172" +rm -f "#file173" +rm -f "#file174" +rm -f "#file175" +rm -f "#file176" +rm -f "#file177" +rm -f "#file178" +rm -f "#file179" +rm -f "#file180" +rm -f "#file181" +rm -f "#file182" +rm -f "#file183" +rm -f "#file184" +rm -f "#file185" +rm -f "#file186" +rm -f "#file187" +rm -f "#file188" +rm -f "#file189" +rm -f "#file190" +rm -f "#file191" +rm -f "#file192" +rm -f "#file193" +rm -f "#file194" +rm -f "#file195" +rm -f "#file196" +rm -f "#file197" +rm -f "#file198" +rm -f "#file199" +rm -f "#file200" +rm -f "#file201" +rm -f "#file202" +rm -f "#file203" +rm -f "#file204" +rm -f "#file205" +rm -f "#file206" +rm -f "#file207" +rm -f "#file208" +rm -f "#file209" +rm -f "#file210" +rm -f "#file211" +rm -f "#file212" +rm -f "#file213" +rm -f "#file214" +rm -f "#file215" +rm -f "#file216" +rm -f "#file217" +rm -f "#file218" +rm -f "#file219" +rm -f "#file220" +rm -f "#file221" +rm -f "#file222" +rm -f "#file223" +rm -f "#file224" +rm -f "#file225" +rm -f "#file226" +rm -f "#file227" +rm -f "#file228" +rm -f "#file229" +rm -f "#file230" +rm -f "#file231"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_jf9jrby5/pash_rTJHIcdiRv +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_jf9jrby5/pash_8Ahua7PSoN +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 23985.879 ms +(7) Recovering BaSh variables from: /tmp/pash_jf9jrby5/pash_8Ahua7PSoN +/dev/fd/63: line 41: declare: PPID: readonly variable +/dev/fd/63: line 48: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 53: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_jf9jrby5/pash_rTJHIcdiRv +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_jf9jrby5/tmpo_1vbeco +Preprocessing time: 5.0 ms + +real 0m24.340s +user 1m42.502s +sys 0m32.102s +Files /home/ubuntu/pash/evaluation//small_intermediary//wf_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_16_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_16_distr_no_eager.time new file mode 100644 index 000000000..da87a49dd --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_16_distr_no_eager.time @@ -0,0 +1,124 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_OwAFd73cQx +(1) Bash variables saved in: /tmp/pash_OwAFd73cQx +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 290.697 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.434 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 35.155 ms +Optimized script saved in: /tmp/pash_1EwKd6W05U +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_OwAFd73cQx +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_1EwKd6W05U: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z"\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ sort <"#file21" >"#file23" & } +{ uniq -c <"#file23" >"#file25" & } +{ sort -rn <"#file25" >"#file27" & } +{ sed q <"#file27" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (126127) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_wh7ZP8UYQp +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_qEfrxn757F +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 131446.819 ms +(7) Recovering BaSh variables from: /tmp/pash_qEfrxn757F +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_wh7ZP8UYQp +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_ozwfggej +Preprocessing time: 28.572 ms + +real 2m12.175s +user 2m10.605s +sys 0m11.315s +Files /home/nikos/dish/evaluation//small_intermediary//wf_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_16_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_16_distr_no_task_par_eager.time new file mode 100644 index 000000000..2567c7d8e --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_16_distr_no_task_par_eager.time @@ -0,0 +1,124 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_mdPbDjRf1L +(1) Bash variables saved in: /tmp/pash_mdPbDjRf1L +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +Argument: [['V', ['Normal', False, 'IN2', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 +Argument: [['V', ['Normal', False, 'IN3', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 +Argument: [['V', ['Normal', False, 'IN4', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 +Argument: [['V', ['Normal', False, 'IN5', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 +Argument: [['V', ['Normal', False, 'IN6', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 +Argument: [['V', ['Normal', False, 'IN7', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 +Argument: [['V', ['Normal', False, 'IN8', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 +Argument: [['V', ['Normal', False, 'IN9', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 +Argument: [['V', ['Normal', False, 'IN10', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 +Argument: [['V', ['Normal', False, 'IN11', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 +Argument: [['V', ['Normal', False, 'IN12', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 +Argument: [['V', ['Normal', False, 'IN13', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 +Argument: [['V', ['Normal', False, 'IN14', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 +Argument: [['V', ['Normal', False, 'IN15', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1), ('option', 2), ('option', 3), ('option', 4), ('option', 5), ('option', 6), ('option', 7), ('option', 8), ('option', 9), ('option', 10), ('option', 11), ('option', 12), ('option', 13), ('option', 14), ('option', 15)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 290.648 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.464 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01, fid:3:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02, fid:4:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03, fid:5:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04, fid:6:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05, fid:7:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06, fid:8:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07, fid:9:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08, fid:10:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09, fid:11:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10, fid:12:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11, fid:13:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12, fid:14:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13, fid:15:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14, fid:16:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +Backend time: 15.386 ms +Optimized script saved in: /tmp/pash_52zLDHgTHl +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_mdPbDjRf1L +/dev/fd/63: line 49: declare: PPID: readonly variable +/dev/fd/63: line 57: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 91: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_52zLDHgTHl: +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +mkfifo "#file17" +mkfifo "#file19" +mkfifo "#file21" +mkfifo "#file23" +mkfifo "#file25" +mkfifo "#file27" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-02 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-03 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-04 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-05 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-06 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-07 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-08 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-09 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-10 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-11 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-12 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-13 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-14 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-15 >"#file17" & } +{ tr -cs A-Za-z"\\n" <"#file17" >"#file19" & } +{ tr A-Z a-z <"#file19" >"#file21" & } +{ sort <"#file21" >"#file23" & } +{ uniq -c <"#file23" >"#file25" & } +{ sort -rn <"#file25" >"#file27" & } +{ sed q <"#file27" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file17" +rm -f "#file19" +rm -f "#file21" +rm -f "#file23" +rm -f "#file25" +rm -f "#file27" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (126373) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_WLzGufblPQ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_36M0H8mpYo +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 130596.176 ms +(7) Recovering BaSh variables from: /tmp/pash_36M0H8mpYo +/dev/fd/63: line 50: declare: PPID: readonly variable +/dev/fd/63: line 58: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 92: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_WLzGufblPQ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_taijgotp +Preprocessing time: 28.511 ms + +real 2m11.302s +user 2m9.868s +sys 0m11.056s +Files /home/nikos/dish/evaluation//small_intermediary//wf_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_distr_auto_split.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_distr_auto_split.time new file mode 100644 index 000000000..bd990a3e1 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_distr_auto_split.time @@ -0,0 +1,207 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_c8o40ura/pash_qsOTOsnjkP +(1) Bash variables saved in: /tmp/pash_c8o40ura/pash_qsOTOsnjkP +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_c8o40ura/tmpxfw0jq0x ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 14.151 ms +Total nodes after optimization: 20 + -- out of which: +Cat nodes: 1 +Eager nodes: 6 +Optimization time: 1.08 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file5, #file16, #file17], []) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 48]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 50]]]]]]]) +arguments, redirs found for: sort +|-- ([#file31, #file32], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/auto-split.sh +|-- ([#file11, #file24, #file25], []) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 50], ['C', 56]]]]]]]) +arguments, redirs found for: sort +|-- ([#file34, #file35], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file16, #file30], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file21, #file31], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file22, #file32], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file24, #file33], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file27, #file34], []) +arguments, redirs found for: /home/ubuntu/pash/runtime/eager.sh +|-- ([#file28, #file35], []) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 4.225 ms +Optimized script saved in: /tmp/pash_c8o40ura/pash_SafjC0FLSy +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_c8o40ura/pash_qsOTOsnjkP +/dev/fd/63: line 26: declare: PPID: readonly variable +/dev/fd/63: line 33: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 38: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_c8o40ura/pash_SafjC0FLSy: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +mkfifo "#file16" +mkfifo "#file17" +mkfifo "#file18" +mkfifo "#file19" +mkfifo "#file20" +mkfifo "#file21" +mkfifo "#file22" +mkfifo "#file23" +mkfifo "#file24" +mkfifo "#file25" +mkfifo "#file26" +mkfifo "#file27" +mkfifo "#file28" +mkfifo "#file29" +mkfifo "#file30" +mkfifo "#file31" +mkfifo "#file32" +mkfifo "#file33" +mkfifo "#file34" +mkfifo "#file35" +{ cat /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/ubuntu/pash/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z"\\n" <"#file3" >"#file5" & } +{ uniq -c <"#file9" >"#file11" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file5" "#file16" "#file17" & } +{ tr A-Z a-z <"#file30" >"#file19" & } +{ tr A-Z a-z <"#file17" >"#file20" & } +{ sort <"#file19" >"#file21" & } +{ sort <"#file20" >"#file22" & } +{ sort -m "#file31" "#file32" >"#file9" & } +{ /home/ubuntu/pash/runtime/auto-split.sh "#file11" "#file24" "#file25" & } +{ sort -rn <"#file33" >"#file27" & } +{ sort -rn <"#file25" >"#file28" & } +{ sort -rn -m "#file34" "#file35" >"#file13" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file16" "#file30" "/tmp/pash_eager_intermediate_#file1" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file21" "#file31" "/tmp/pash_eager_intermediate_#file2" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file22" "#file32" "/tmp/pash_eager_intermediate_#file3" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file24" "#file33" "/tmp/pash_eager_intermediate_#file4" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file27" "#file34" "/tmp/pash_eager_intermediate_#file5" & } +{ /home/ubuntu/pash/runtime/eager.sh "#file28" "#file35" "/tmp/pash_eager_intermediate_#file6" & } +{ sed q <"#file13" & } +source /home/ubuntu/pash/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +rm -f "#file16" +rm -f "#file17" +rm -f "#file18" +rm -f "#file19" +rm -f "#file20" +rm -f "#file21" +rm -f "#file22" +rm -f "#file23" +rm -f "#file24" +rm -f "#file25" +rm -f "#file26" +rm -f "#file27" +rm -f "#file28" +rm -f "#file29" +rm -f "#file30" +rm -f "#file31" +rm -f "#file32" +rm -f "#file33" +rm -f "#file34" +rm -f "#file35"(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_c8o40ura/pash_JjeAlP0V5b +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_c8o40ura/pash_q9L92zPBzw +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 35068.909 ms +(7) Recovering BaSh variables from: /tmp/pash_c8o40ura/pash_q9L92zPBzw +/dev/fd/63: line 27: declare: PPID: readonly variable +/dev/fd/63: line 34: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 39: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_c8o40ura/pash_JjeAlP0V5b +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_c8o40ura/tmp5pyxxzk3 +Preprocessing time: 7.013 ms + +real 0m35.323s +user 1m0.252s +sys 0m14.884s +Files /home/ubuntu/pash/evaluation//small_intermediary//wf_seq_output and /tmp/pash_output are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_distr_no_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_distr_no_eager.time new file mode 100644 index 000000000..3281a8813 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_distr_no_eager.time @@ -0,0 +1,110 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_ebR9me7DxI +(1) Bash variables saved in: /tmp/pash_ebR9me7DxI +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 51.436 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.272 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 10.06 ms +Optimized script saved in: /tmp/pash_1ulKKYOC7q +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_ebR9me7DxI +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_1ulKKYOC7q: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z"\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ sort <"#file7" >"#file9" & } +{ uniq -c <"#file9" >"#file11" & } +{ sort -rn <"#file11" >"#file13" & } +{ sed q <"#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (125221) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_RnzCDO4LNJ +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_ED87EX7yFd +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 132011.633 ms +(7) Recovering BaSh variables from: /tmp/pash_ED87EX7yFd +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_RnzCDO4LNJ +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_zmwdgoie +Preprocessing time: 26.517 ms + +real 2m12.481s +user 2m10.949s +sys 0m11.274s +Files /home/nikos/dish/evaluation//small_intermediary//wf_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_distr_no_task_par_eager.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_distr_no_task_par_eager.time new file mode 100644 index 000000000..c260b3025 --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_distr_no_task_par_eager.time @@ -0,0 +1,110 @@ +(1) Previous exit status: 0 +(1) Previous set state: hB +Writing vars to: /tmp/pash_kg5NMJYk3Y +(1) Bash variables saved in: /tmp/pash_kg5NMJYk3Y +(1) Bash set state at start of execution: hB +(1) Set state reverted to PaSh-internal set state: huB +Retrieving candidate DF region: /tmp/pash_temp_ir_file1 ... Done! +Argument: [['V', ['Normal', False, 'IN0', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 +Argument: [['V', ['Normal', False, 'IN1', []]]] was expanded to: /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 +inputs-outputs found for: cat +|-- ([('option', 0), ('option', 1)], ['stdout'], []) +class: stateless found for: cat +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: tr +|-- (['stdin'], ['stdout'], [('option', 0), ('option', 1)]) + -- Warning: Overriding standard category for: tr +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], []) +class: pure found for: sort +inputs-outputs found for: uniq +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: uniq +inputs-outputs found for: sort +|-- (['stdin'], ['stdout'], [('option', 0)]) +class: pure found for: sort +Argument: [['V', ['Normal', False, '1', []]], ['C', 113]] was expanded to: q +inputs-outputs found for: sed +|-- (['stdin'], ['stdout'], [('option', 0)]) + -- Warning: Overriding standard category for: sed +Compilation time: 49.401 ms +Total nodes after optimization: 7 + -- out of which: +Cat nodes: 1 +Eager nodes: 0 +Optimization time: 0.339 ms +arguments, redirs found for: cat +|-- ([fid:1:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00, fid:2:/home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01], [['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 51]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]]]) +arguments, redirs found for: tr +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 53]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 55]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]]]) +arguments, redirs found for: uniq +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 57]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]]]) +arguments, redirs found for: sort +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 49]]]]]], ['File', ['To', 1, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +arguments, redirs found for: sed +|-- ([], [['File', ['From', 0, [['Q', [['C', 35], ['C', 102], ['C', 105], ['C', 108], ['C', 101], ['C', 49], ['C', 51]]]]]]]) +Backend time: 9.612 ms +Optimized script saved in: /tmp/pash_XgncMcGqQx +Compiler exited with code: 0 +(3) Recovering variables from: /tmp/pash_kg5NMJYk3Y +/dev/fd/63: line 35: declare: PPID: readonly variable +/dev/fd/63: line 43: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 77: declare: UID: readonly variable +(3) Reverted to BaSh set state: hB +(4) Executing script in /tmp/pash_XgncMcGqQx: +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +mkfifo "#file3" +mkfifo "#file5" +mkfifo "#file7" +mkfifo "#file9" +mkfifo "#file11" +mkfifo "#file13" +{ cat /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-00 /home/nikos/dish/evaluation/small_intermediary/split_inputs/input-chunk-01 >"#file3" & } +{ tr -cs A-Za-z"\\n" <"#file3" >"#file5" & } +{ tr A-Z a-z <"#file5" >"#file7" & } +{ sort <"#file7" >"#file9" & } +{ uniq -c <"#file9" >"#file11" & } +{ sort -rn <"#file11" >"#file13" & } +{ sed q <"#file13" & } +source /home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh ${!} +rm -f "#file3" +rm -f "#file5" +rm -f "#file7" +rm -f "#file9" +rm -f "#file11" +rm -f "#file13" +/home/nikos/dish/runtime/wait_for_output_and_sigpipe_rest.sh: line 9: kill: (125442) - No such process +(5) BaSh script exited with ec: 0 +(5) Writing current BaSh set state to: /tmp/pash_LbJojmrySN +(5) Current BaSh shell: hB +(5) Reverted to PaSh set state to: huB +Writing vars to: /tmp/pash_OnyUZuigvG +(5) Exiting from BaSh with BaSh status: 0 +Execution time: 130374.284 ms +(7) Recovering BaSh variables from: /tmp/pash_OnyUZuigvG +/dev/fd/63: line 36: declare: PPID: readonly variable +/dev/fd/63: line 44: declare: SHELLOPTS: readonly variable +/dev/fd/63: line 78: declare: UID: readonly variable +(7) Reading current BaSh set state from: /tmp/pash_LbJojmrySN +(7) Current BaSh set state: hB +(7) Current PaSh set state: huB +(7) Reverted to BaSh set state before exiting: hB +(7) Reverting last BaSh exit code: 0 +Preprocessed script stored in: /tmp/pash_yncgjypk +Preprocessing time: 27.198 ms + +real 2m10.829s +user 2m9.037s +sys 0m11.394s +Files /home/nikos/dish/evaluation//small_intermediary//wf_seq_output and /tmp/distr_output/0 are identical diff --git a/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_seq.time b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_seq.time new file mode 100644 index 000000000..9d1828c9d --- /dev/null +++ b/evaluation/multi-instance-experiment/archive/results/standard_disk_instance/eurosys_small/wf_2_seq.time @@ -0,0 +1,4 @@ + +real 0m55.325s +user 0m55.091s +sys 0m7.870s diff --git a/evaluation/multi-instance-experiment/collect-results-script.sh b/evaluation/multi-instance-experiment/collect-results-script.sh new file mode 100755 index 000000000..fedefe183 --- /dev/null +++ b/evaluation/multi-instance-experiment/collect-results-script.sh @@ -0,0 +1,32 @@ +#!/usr/bin/env bash + +## Steps: +## - clone the repository to a temp directory (requires access to clone the repo) +## - Compress the repository +## - scp copy the compressed repository to the server (requires ssh keys to server) +## - ssh to the server (requires ssh keys to server) +## + untar the compressed repository +## + run install script (requires sudo access without password) +## + cd compiler; ./test_evaluation_scripts.sh + +set -e + +if [ $# -lt 3 ]; then + echo "Not enough arguments!" + exit 1 +fi + +## The directory to save the results in +LOCAL_DIR=$1 + +## The path of the private key for ssh authentication +PRIVATE_KEY=$2 + +## The user and IP address or hostname of the server +HOSTNAME=$3 + +USER="ubuntu" +RESULT_DIR="/home/${USER}/pash/evaluation/results/eurosys_small" + +mkdir -p "$LOCAL_DIR" +scp -o StrictHostKeyChecking=no -o 'ConnectionAttempts 10' -i $PRIVATE_KEY -r "${USER}@${HOSTNAME}:${RESULT_DIR}" "${LOCAL_DIR}" diff --git a/evaluation/multi-instance-experiment/execute-and-collect.sh b/evaluation/multi-instance-experiment/execute-and-collect.sh new file mode 100755 index 000000000..437cb25a3 --- /dev/null +++ b/evaluation/multi-instance-experiment/execute-and-collect.sh @@ -0,0 +1,28 @@ +#!/usr/bin/env bash + +INSTANCE_ID="${1:?No instance-id given.}" +KEY_PATH="${2:?No key path given.}" + +## The directory to save the results in +LOCAL_DIR="${3:?No local results dir}" + +## The user and IP address or hostname of the server +HOSTNAME="${4:?No hostname}" + +EVAL_DIR="$PASH_TOP/evaluation/multi-instance-experiment/" + +## TODO: This only works if the user's name is ubuntu (and also is tied to the value in experiment-script.sh) +## Is there any better way to refactor this so that this is not an issue? +COMPLETION_FILE="/home/ubuntu/pash/done.txt" +LOG_FILE="/home/ubuntu/pash/output.log" + +## Execute script +"${PASH_TOP}/evaluation/multi-instance-experiment/ssh-script.sh" "${KEY_PATH}" "${HOSTNAME}" < "${EVAL_DIR}/experiment-script.sh" + + + +## Wait for it to complete +"${PASH_TOP}/scripts/ssh-bg-poller.sh" "${COMPLETION_FILE}" "${LOG_FILE}" "${KEY_PATH}" "${HOSTNAME}" + +## Collect results +"${EVAL_DIR}/collect-results-script.sh" "${LOCAL_DIR}" "${KEY_PATH}" "${HOSTNAME}" diff --git a/evaluation/multi-instance-experiment/experiment-script.sh b/evaluation/multi-instance-experiment/experiment-script.sh new file mode 100644 index 000000000..b01489dd0 --- /dev/null +++ b/evaluation/multi-instance-experiment/experiment-script.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +cd pash/evaluation/eurosys +## WARNING: It is necessary to close file descriptors so that ssh can exit +nohup ../../scripts/bg-worker.sh ../../done.txt ../../output.log ./execute_eurosys_one_liners.sh -s /dev/null 2>/dev/null & diff --git a/evaluation/multi-instance-experiment/installation-script.sh b/evaluation/multi-instance-experiment/installation-script.sh new file mode 100644 index 000000000..352d555f9 --- /dev/null +++ b/evaluation/multi-instance-experiment/installation-script.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +## Make this a first time only script + +FORK="andromeda" +BRANCH="main" + +rm -rf pash +git clone https://github.com/$FORK/pash.git +cd pash +git checkout $BRANCH +echo "At branch: \$(git rev-parse --abbrev-ref HEAD) of \$(git remote get-url origin)" +sed -i 's#git@github.com:angelhof/libdash.git#https://github.com/angelhof/libdash/#g' .gitmodules +source scripts/install.sh -p +cd compiler +./test_evaluation_scripts.sh \ No newline at end of file diff --git a/evaluation/multi-instance-experiment/instance-profiles/fast-disk.sh b/evaluation/multi-instance-experiment/instance-profiles/fast-disk.sh new file mode 100644 index 000000000..4314aaae0 --- /dev/null +++ b/evaluation/multi-instance-experiment/instance-profiles/fast-disk.sh @@ -0,0 +1,11 @@ +export PASH_AWS_EC2_AMI='ami-0dd9f0e7df0f0a138'; +export PASH_AWS_EC2_INSTANCE_TYPE='c5.2xlarge'; +export PASH_AWS_EC2_VPC_ID='vpc-54e6373f'; +export PASH_AWS_EC2_KEY_NAME='aws_pash'; +export PASH_AWS_EC2_SUBNET='subnet-5ec75912'; +export PASH_AWS_EC2_SECURITY_GROUP='sg-002037ce95957a98b'; +export PASH_AWS_EC2_DISK_TYPE='gp3'; +# Disk size has to be 30 to allow for IOPS of 15000 +export PASH_AWS_EC2_DISK_SIZE_GB='30'; +export PASH_AWS_EC2_DISK_IOPS='15000'; +## What about throughput? diff --git a/evaluation/multi-instance-experiment/instance-profiles/standard-disk.sh b/evaluation/multi-instance-experiment/instance-profiles/standard-disk.sh new file mode 100644 index 000000000..b4f2b204d --- /dev/null +++ b/evaluation/multi-instance-experiment/instance-profiles/standard-disk.sh @@ -0,0 +1,10 @@ +export PASH_AWS_EC2_AMI='ami-0dd9f0e7df0f0a138'; +export PASH_AWS_EC2_INSTANCE_TYPE='c5.2xlarge'; +export PASH_AWS_EC2_VPC_ID='vpc-54e6373f'; +export PASH_AWS_EC2_KEY_NAME='aws_pash'; +export PASH_AWS_EC2_SUBNET='subnet-5ec75912'; +export PASH_AWS_EC2_SECURITY_GROUP='sg-002037ce95957a98b'; +export PASH_AWS_EC2_DISK_SIZE_GB='20'; +export PASH_AWS_EC2_DISK_TYPE='gp2'; +## This needs to be empty since gp2 doesn't take IOPS +export PASH_AWS_EC2_DISK_IOPS=''; diff --git a/evaluation/multi-instance-experiment/main.sh b/evaluation/multi-instance-experiment/main.sh new file mode 100755 index 000000000..cf3fc828b --- /dev/null +++ b/evaluation/multi-instance-experiment/main.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +## This script is just an experiment trying to: +## 1. spawn EC2 instances +## 2. run some tests on them +## 3. collect the results +## 4. stop the instances +## 5. plot the results + +## running a script on an instance is done using with-ec2.sh +## +## the ssh wrapper to run on an ubuntu ec2 instance is in ssh-script.sh +## +## the actual script that is run on the ec2 instance is experiment-script.sh +## +## the instance profiles to use when creating an instance are saves in `instance-profiles` + +## Q: We need to make sure to have configurable steps that are already done (e.g. reinstalling, running tests) + +## Q: What if we need to create a new key pair + +## Q: Is it safe to save the instance ids in public? + +## TODO: Refactor this to run for an arbitrary experiment so that it can be reused. + +key_path="~/.ssh/aws_pash.pem" +standard_disk_instance_id="i-0347068fae17c256e" +standard_disk_pretty_name="standard_disk_instance" + +fast_disk_instance_id="i-0dffae07e7c7f8db2" +fast_disk_pretty_name="fast_disk_instance" + +eval_dir="$PASH_TOP/evaluation/multi-instance-experiment/" +local_res_dir="$eval_dir/results" + +## Assumes that script is installed and instance exists. +## This can be done by sourcing a profile: +## ```sh +## source instance-profiles/fast-disk.sh +## ``` +## and then running `scripts/aws/ec2/make-ec2.sh` + +execute_on_instance_and_collect_results() +{ + local instance_id=$1 + local instance_res_dir="$local_res_dir/$2" + + ## Execute and Collect results + $PASH_TOP/scripts/with-ec2.sh "$instance_id" "$eval_dir/execute-and-collect.sh" "$instance_id" "$key_path" "$instance_res_dir" +} + +execute_on_instance_and_collect_results "$standard_disk_instance_id" "$standard_disk_pretty_name" +execute_on_instance_and_collect_results "$fast_disk_instance_id" "$fast_disk_pretty_name" + +## TODO: Add plotting diff --git a/evaluation/multi-instance-experiment/plot.py b/evaluation/multi-instance-experiment/plot.py new file mode 100644 index 000000000..deee70639 --- /dev/null +++ b/evaluation/multi-instance-experiment/plot.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python3 + +import os +import subprocess +import sys + +if 'PASH_TOP' in os.environ: + PASH_TOP = os.environ['PASH_TOP'] +else: + GIT_TOP_CMD = [ 'git', 'rev-parse', '--show-toplevel', '--show-superproject-working-tree'] + PASH_TOP = subprocess.run(GIT_TOP_CMD, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True).stdout.rstrip() + +sys.path.append(os.path.join(PASH_TOP, "compiler")) + +import matplotlib.pyplot as plt +import gather_results + +experiments = ["minimal_grep", + "minimal_sort", + "topn", + "wf", + "spell", + "diff", + "bigrams", + "set-diff", + "double_sort", + "shortest_scripts"] +scaleup_numbers = [2, 16] + +## TODO: Abstract this in an argument +standard_disk_results_dir = os.path.join("results", "standard_disk_instance", "eurosys_small") +fast_disk_results_dir = os.path.join("results", "fast_disk_instance", "eurosys_small") + + +def plot(all_results, experiments, scaleup_numbers, pash_config='split'): + fig = plt.figure() + columns = 5 + rows = (len(experiments) // columns) + 1 + # hspace=0.05 + hspace=0.15 + gs = fig.add_gridspec(rows, columns, hspace=hspace) + + + for i, experiment in enumerate(experiments): + ax = fig.add_subplot(gs[i]) + for config_name, config_results in all_results.items(): + speedups = config_results[experiment][pash_config] + seq_time_ms = config_results[experiment]['sequential'] + seq_time = seq_time_ms / 1000.0 + ys = [seq_time / speedup for speedup in speedups] + ax.plot(scaleup_numbers, ys, label=config_name+"-pash") + seq_ys = [seq_time for _ in scaleup_numbers] + ax.plot(scaleup_numbers, seq_ys, label=config_name + "-bash") + + text = "{}".format(gather_results.pretty_names[experiment]) + # text_relative_y = .91 + text_relative_y = 1.05 + ax.text(.5, text_relative_y, text, + horizontalalignment='center', + transform=ax.transAxes) + ax.set_xticks(scaleup_numbers) + + plt.legend(loc='lower right', fontsize=16) + # plt.title(pretty_names[experiment]) + + fig.set_size_inches(columns * 6, rows * 5) + plt.tight_layout() + plt.savefig(os.path.join('plots', "one_liners.pdf"),bbox_inches='tight') + + +standard_disk_results = {} +fast_disk_results = {} + +for experiment in experiments: + standard_disk_speedup_results, _, standard_sequential_time = gather_results.collect_scaleup_line_speedups(experiment, scaleup_numbers, standard_disk_results_dir) + standard_disk_results[experiment] = standard_disk_speedup_results + standard_disk_results[experiment]['sequential'] = standard_sequential_time + + fast_disk_speedup_results, _, fast_sequential_time = gather_results.collect_scaleup_line_speedups(experiment, scaleup_numbers, fast_disk_results_dir) + fast_disk_results[experiment] = fast_disk_speedup_results + fast_disk_results[experiment]['sequential'] = fast_sequential_time + +all_results = { + "standard-disk": standard_disk_results, + "fast-disk": fast_disk_results, +} +if not os.path.exists('plots'): + os.makedirs('plots') + +plot(all_results, experiments, scaleup_numbers) diff --git a/evaluation/multi-instance-experiment/ssh-script.sh b/evaluation/multi-instance-experiment/ssh-script.sh new file mode 100755 index 000000000..80c54ba0e --- /dev/null +++ b/evaluation/multi-instance-experiment/ssh-script.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +## Steps: +## - clone the repository to a temp directory (requires access to clone the repo) +## - Compress the repository +## - scp copy the compressed repository to the server (requires ssh keys to server) +## - ssh to the server (requires ssh keys to server) +## + untar the compressed repository +## + run install script (requires sudo access without password) +## + cd compiler; ./test_evaluation_scripts.sh + +set -e + +if [ $# -lt 2 ]; then + echo "Not enough arguments!" + exit 1 +fi + +## The path of the private key for ssh authentication +PRIVATE_KEY=$1 + +## The user and IP address or hostname of the server +HOSTNAME=$2 + +USER="ubuntu" + +ssh -o StrictHostKeyChecking=no -o 'ConnectionAttempts 10' -i $PRIVATE_KEY "${USER}@${HOSTNAME}" /bin/bash diff --git a/scripts/aws/ec2/execute-on-ec2.sh b/scripts/aws/ec2/execute-on-ec2.sh new file mode 100755 index 000000000..9abb421e5 --- /dev/null +++ b/scripts/aws/ec2/execute-on-ec2.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +INSTANCE_ID="${1:?No instance-id given.}" +KEY_PATH="${2:?No key path given.}" + +$PASH_TOP/scripts/with-ec2.sh "${INSTANCE_ID}" $PASH_TOP/evaluation/multi-instance-experiment/ssh-script.sh "${KEY_PATH}" \ No newline at end of file diff --git a/scripts/aws/ec2/make-ec2.sh b/scripts/aws/ec2/make-ec2.sh index f1b59bc79..961633b23 100755 --- a/scripts/aws/ec2/make-ec2.sh +++ b/scripts/aws/ec2/make-ec2.sh @@ -2,6 +2,12 @@ # Pair with ./suggest-ec2.sh +if [ -z "$PASH_AWS_EC2_DISK_IOPS" ]; then + IOPS_ARG="" +else + IOPS_ARG=",Iops=${PASH_AWS_EC2_DISK_IOPS}" +fi + main() { set -x aws ec2 run-instances \ @@ -14,7 +20,7 @@ main() { --monitoring "Enabled=false" \ --subnet-id "$PASH_AWS_EC2_SUBNET" \ --query 'Instances[0].InstanceId' \ - --block-device-mappings "DeviceName=/dev/sda1,Ebs={VolumeSize=$PASH_AWS_EC2_DISK_SIZE_GB}" \ + --block-device-mappings "DeviceName=/dev/sda1,Ebs={VolumeSize=$PASH_AWS_EC2_DISK_SIZE_GB,VolumeType=${PASH_AWS_EC2_DISK_TYPE}${IOPS_ARG}}" \ --output text } diff --git a/scripts/aws/ec2/suggest-ec2.sh b/scripts/aws/ec2/suggest-ec2.sh index 01e524127..507646a77 100755 --- a/scripts/aws/ec2/suggest-ec2.sh +++ b/scripts/aws/ec2/suggest-ec2.sh @@ -14,6 +14,8 @@ main() { echo "export PASH_AWS_EC2_SUBNET='$subnet';"; echo "export PASH_AWS_EC2_SECURITY_GROUP='$sg';"; echo "export PASH_AWS_EC2_DISK_SIZE_GB='10';"; + echo "export PASH_AWS_EC2_DISK_TYPE='gp2';"; + echo "export PASH_AWS_EC2_DISK_IOPS='100';"; } main diff --git a/scripts/bg-worker.sh b/scripts/bg-worker.sh new file mode 100755 index 000000000..5c6d7f07e --- /dev/null +++ b/scripts/bg-worker.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +## This script runs a command in the background +## and waits until the command closes its stdout. +## When it does, it writes to a designated file to +## show command completion. + +## If you want to run the waiter on the background (which is the main reason to use it), +## run it using `nohup waiter.sh ... &`. + +if [ $# -lt 3 ]; then + echo "Not enough arguments!" + exit 1 +fi + +completion_file=$1 +output_log=$2 +command="${@:3}" + +rm -f "$completion_file" + +pipe_name="$(mktemp -u)" +mkfifo "$pipe_name" +$command > "$pipe_name" & +cat $pipe_name > "$output_log" + +echo "done" > "$completion_file" diff --git a/scripts/ssh-bg-poller.sh b/scripts/ssh-bg-poller.sh new file mode 100755 index 000000000..a33f0dcaa --- /dev/null +++ b/scripts/ssh-bg-poller.sh @@ -0,0 +1,30 @@ +#!/usr/bin/env bash + +DONE_FILE=${1?Done file argument not given} +LOG_FILE=${2?Done file argument not given} +KEY_PATH=${3?Key path not given} +HOSTNAME=${4?Hostname not given} + +check_if_file_exists() +{ +"${PASH_TOP}/evaluation/multi-instance-experiment/ssh-script.sh" "${KEY_PATH}" "${HOSTNAME}" < $LOCAL_LOG +do + comm -23 --nocheck-order $LOCAL_LOG $PREVIOUS_LOCAL_LOG + cat $LOCAL_LOG > $PREVIOUS_LOCAL_LOG + sleep 5 +done diff --git a/scripts/ssh-install.sh b/scripts/ssh-install.sh index 8fce4585f..c81c238ff 100755 --- a/scripts/ssh-install.sh +++ b/scripts/ssh-install.sh @@ -26,7 +26,7 @@ FORK="andromeda" BRANCH="main" USER="ubuntu" -ssh -o StrictHostKeyChecking=no -i $PRIVATE_KEY "${USER}@${HOSTNAME}" /bin/bash <&2 + exit 1 + esac +done +shift "$(( OPTIND - 1 ))" + get-instance-ip() { aws ec2 describe-instances \ --instance-ids "$1" \ @@ -26,10 +37,13 @@ wait-for-instance-ip() { call-with-active-ec2() { set -e local instance_id="$1" + echo "Starting instance $instance_id" aws ec2 start-instances --instance-ids "$instance_id" local ip=$(wait-for-instance-ip "$instance_id"); echo "$ip" - trap "aws ec2 stop-instances --instance-ids $instance_id" EXIT + if [ "$stop_flag" -eq 1 ]; then + trap "echo Stopping instance: $instance_id; aws ec2 stop-instances --instance-ids $instance_id" EXIT + fi ${@:2} "$ip" }