# example of a run file that saves output to a file called new_nsc_out.txt model nsc_model_1.txt; data nsc_data_1.txt; expand > new_nsc_out.txt; # The expand command will send its output to a # new file called new_nsc_out.txt solve; display P >> new_nsc_out.txt; # The >> symbol indicates that the display command display I >> new_nsc_out.txt; # is to append its output to the file new_nsc_out.txt.