Advertisement
Guest User

compgen

a guest
Jun 10th, 2015
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.13 KB | None | 0 0
  1. -A action
  2.                       The action may be one of the following to generate a list of possible completions:
  3.                       alias   Alias names.  May also be specified as -a.
  4.                       arrayvar
  5.                               Array variable names.
  6.                       binding Readline key binding names.
  7.                       builtin Names of shell builtin commands.  May also be specified as -b.
  8.                       command Command names.  May also be specified as -c.
  9.                       directory
  10.                               Directory names.  May also be specified as -d.
  11.                       disabled
  12.                               Names of disabled shell builtins.
  13.                       enabled Names of enabled shell builtins.
  14.                       export  Names of exported shell variables.  May also be specified as -e.
  15.                       file    File names.  May also be specified as -f.
  16.                       function
  17.                               Names of shell functions.
  18.                       group   Group names.  May also be specified as -g.
  19.                       helptopic
  20.                               Help topics as accepted by the help builtin.
  21.                       hostname
  22.                               Hostnames, as taken from the file specified by the HOSTFILE shell variable.
  23.                       job     Job names, if job control is active.  May also be specified as -j.
  24.                       keyword Shell reserved words.  May also be specified as -k.
  25.                       running Names of running jobs, if job control is active.
  26.                       service Service names.  May also be specified as -s.
  27.                       setopt  Valid arguments for the -o option to the set builtin.
  28.                       shopt   Shell option names as accepted by the shopt builtin.
  29.                       signal  Signal names.
  30.                       stopped Names of stopped jobs, if job control is active.
  31.                       user    User names.  May also be specified as -u.
  32.                       variable
  33.                               Names of all shell variables.  May also be specified as -v.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement