fish-shell/tests/gen_output.fish
axel 7ddecde543 Add subdirectories
darcs-hash:20050920133155-ac50b-9a14c6c664dd03afbe8e15e7c7998fcfb5c3c750.gz
2005-09-20 23:31:55 +10:00

17 lines
No EOL
352 B
Fish
Executable file

#!/usr/bin/fish
#
# Generate output for a test script
#
# It is important that you verify that the generated
# output is correct!
#
for i in $argv
set template_out (basename $i .in).out
set template_err (basename $i .in).err
set template_status (basename $i .in).status
fish <$i >$template_out ^$template_err
echo $status >$template_status
end