5

compgen is a useful command, and fish is an excellent command shell. But I cannot find an equivalent in fish.

I write one by myself:

function compgen --description 'Print a list of documented fish commands'
    bash -c "compgen $argv"
end

But I think it better to use the native one if any.

1 Answer 1

3

This is an exceptionally old question, but for future readers who stumble across this, the fish shell equivalent of bash's compgenbuiltin is complete -C. With -C/--do-complete option, complete will attempt to find all possible completions for the string specified immediately following -C, and, naturally, if you do not provide any additional characters after the -C, complete will, "... try to find all possible completions for the current command line buffer."

You can read about the the complete command and all of its options on the Fish Shell documentation page for this command.

Source: Fish Shell GitHub Issue #2105

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .