mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
51527612d3
Fixes #1728.
17 lines
356 B
Fish
Executable file
17 lines
356 B
Fish
Executable file
#!/usr/bin/env 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
|