fish-shell/share/functions/funcsave.fish

45 lines
1.3 KiB
Fish
Raw Normal View History

function funcsave --description "Save the current definition of all specified functions to file"
set -l options q/quiet h/help d/directory=
2018-11-22 19:43:35 +08:00
argparse -n funcsave $options -- $argv
2017-07-14 04:35:26 +08:00
or return
2017-07-14 04:35:26 +08:00
if set -q _flag_help
__fish_print_help funcsave
2017-07-14 04:35:26 +08:00
return 0
end
set -l funcdir
if set -q _flag_directory
set funcdir $_flag_directory
else
set funcdir $__fish_config_dir/functions
end
2018-11-22 19:43:35 +08:00
if not set -q argv[1]
printf (_ "%ls: Expected at least %d args, got only %d\n") funcsave 1 0 >&2
2018-11-22 19:43:35 +08:00
return 1
end
if not mkdir -p $funcdir
printf (_ "%s: Could not create configuration directory '%s'\n") funcsave $funcdir >&2
return 1
end
2017-07-26 05:02:50 +08:00
set -l retval 0
2017-07-14 04:35:26 +08:00
for funcname in $argv
set -l funcpath "$funcdir/$funcname.fish"
2017-07-14 04:35:26 +08:00
if functions -q -- $funcname
functions --no-details -- $funcname >$funcpath
2021-09-29 13:22:21 +08:00
and set -q _flag_quiet || printf (_ "%s: wrote %s\n") funcsave $funcpath
else if test -w $funcpath
rm $funcpath
and set -q _flag_quiet || printf (_ "%s: removed %s\n") funcsave $funcpath
else
printf (_ "%s: Unknown function '%s'\n") funcsave $funcname >&2
2017-07-26 05:02:50 +08:00
set retval 1
end
end
2017-07-26 05:02:50 +08:00
return $retval
end