| Command | Beschreibung |
|---|
-o nospace | Apply autocompletion without appending a space to the completed word. Tell Readline not to append a space (the default) to words completed at the end of the line. |
-o bashdefault | Perform the rest of the default Bash completions if the compspec generates no matches. |
-o default | Use Readline’s default filename completion if the compspec generates no matches. |
-o dirnames | Perform directory name completion if the compspec generates no matches. |
-o filenames | Tell Readline that the compspec generates filenames, so it can perform any filename-specific processing (like adding a slash to directory names, quoting special characters, or suppressing trailing spaces). This option is intended to be used with shell functions specified with -F. |
-o noquote | Tell Readline not to quote the completed words if they are filenames (quoting filenames is the default). |
-o nosort | Tell Readline not to sort the list of possible completions alphabetically. |
-o plusdirs | After any matches defined by the compspec are generated, directory name completion is attempted and any matches are added to the results of the other actions. |