-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
117 additions
and
7 deletions.
There are no files selected for viewing
79 changes: 79 additions & 0 deletions
79
cli/References/Linux/bash-completion-generator-ivpn-cli.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#!/bin/bash | ||
|
||
# Bash completion generator for ivpn CLI | ||
# (generates a bash completion script for the `ivpn` CLI) | ||
# https://github.com/jordan-ivpn/bash-completion-generator-ivpn-cli/ | ||
# | ||
# Usage: | ||
# Install the ivpn CLI package first: https://www.ivpn.net/apps-linux/ | ||
# | ||
# $ bash-completion-generator-ivpn-cli.sh > ivpn.bash | ||
# $ source ivpn.bash | ||
# $ sudo mv ivpn.bash /usr/share/bash-completion/completions/ivpn | ||
# $ sudo chown root:root /usr/share/bash-completion/completions/ivpn | ||
# | ||
# Info: | ||
# 1) The recommended directory is `completionsdir`, which you can get with `pkg-config --variable=completionsdir bash-completion` | ||
# https://github.com/scop/bash-completion | ||
# | ||
|
||
# exit on error | ||
set -e | ||
|
||
# By default, the source command is `ivpn`. | ||
# Also you can specify custom path to IVPN CLI binary in the first argument to this script (e.g. `bash-completion-generator-ivpn-cli.sh /usr/local/bin/ivpn`) | ||
cli="ivpn" | ||
if [ ! -z "$1" ] | ||
then | ||
cli="$1" | ||
fi | ||
|
||
# Check if the command/binary exists | ||
if ! command -v "$cli" > /dev/null 2>&1; then | ||
echo "Error: $cli not found or not executable" | ||
exit 1 | ||
fi | ||
|
||
# print header | ||
echo "# bash completion for ivpn" | ||
echo "" | ||
echo "_ivpn()" | ||
echo "{" | ||
echo ' local cur opts' | ||
echo ' COMPREPLY=()' | ||
echo ' cur="${COMP_WORDS[COMP_CWORD]}" # current word' | ||
echo ' cmd="${COMP_WORDS[1]}" # next word after "ivpn", e.g.: $ ivpn <cmd> ...' | ||
echo "" | ||
|
||
# determine command list and print list | ||
# first awk bit from: https://stackoverflow.com/a/22222219 | ||
COMMAND_LIST=$( $cli -h | grep -Ev ^$ | awk '/Tips:/{f=0} f; /COMMANDS:/{f=1}' | awk '{ print $1 }') | ||
|
||
echo " opts="'"'$COMMAND_LIST" -h"'"' | ||
echo "" | ||
echo ' case "${cmd}" in' | ||
|
||
# iterate over commands and print case entries for sub-commands | ||
for i in $COMMAND_LIST; do | ||
echo " "$i")" | ||
SUB_LIST=$($cli $i -h | grep -E '^ -' | awk '{ print $1 }' | tr "|" " ") | ||
echo " local "$i"_opts="'"'$SUB_LIST" -h"'"' | ||
echo " COMPREPLY=( \$(compgen -W "'"'"\${"$i"_opts}"'"'" -- \${cur}) )" | ||
echo " return 0" | ||
echo " ;;" | ||
done | ||
|
||
|
||
# print footer | ||
echo " -*)" | ||
echo " return 0" | ||
echo " ;;" | ||
echo " esac" | ||
echo "" | ||
echo ' COMPREPLY=($(compgen -W "${opts}" -- ${cur}))' | ||
echo " return 0" | ||
echo "}" | ||
echo "complete -F _ivpn ivpn" | ||
echo "" | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters