mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
17 lines
No EOL
351 B
Fish
Executable file
17 lines
No EOL
351 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 |