mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-13 16:37:34 +00:00
d3dd9400e3
darcs-hash:20061212122853-ac50b-4f3c9962bc6daed95c8f53a19af05bc3d924eac7.gz
53 lines
1.2 KiB
Fish
53 lines
1.2 KiB
Fish
|
|
|
|
function psub -d (N_ "Read from stdin into a file and output the filename. Remove the file when the command that called psub exits.")
|
|
|
|
set -l filename
|
|
set -l funcname
|
|
|
|
if count $argv >/dev/null
|
|
switch $argv[1]
|
|
case '-h*' --h --he --hel --help
|
|
__fish_print_help psub
|
|
return 0
|
|
|
|
case '*'
|
|
printf (_ "%s: Unknown argument '%s'\n") psub $argv[1]
|
|
return 1
|
|
end
|
|
end
|
|
|
|
if not status --is-command-substitution
|
|
echo psub: Not inside of command substitution >&2
|
|
return
|
|
end
|
|
|
|
# Find unique file name for writing output to
|
|
while true
|
|
set filename /tmp/.psub.(echo %self).(random);
|
|
if not test -e $filename
|
|
break;
|
|
end
|
|
end
|
|
|
|
# Write output to pipe. This needs to be done in the background so
|
|
# that the command substitution exits without needing to wait for
|
|
# all the commands to exit
|
|
mkfifo $filename
|
|
cat >$filename &
|
|
|
|
# Write filename to stdout
|
|
echo $filename
|
|
|
|
# Find unique function name
|
|
while true
|
|
set funcname __fish_psub_(random);
|
|
if not functions $funcname >/dev/null ^/dev/null
|
|
break;
|
|
end
|
|
end
|
|
|
|
# Make sure we erase file when caller exits
|
|
eval function $funcname --on-job-exit caller\; command rm $filename\; functions -e $funcname\; end
|
|
|
|
end
|