From the README: Argcomplete provides easy, extensible command line tab completion of arguments for your Python application. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
5 lines
85 B
Bash
5 lines
85 B
Bash
#!/bin/sh
|
|
|
|
[ "$1" = python3-argcomplete ] || exit 0
|
|
|
|
python3 -c 'import argcomplete'
|