diff options
author | crupest <crupest@outlook.com> | 2023-11-01 20:58:53 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-11-13 13:47:29 +0800 |
commit | 47a626b854f4125dd9e3fbb7f222398668a50267 (patch) | |
tree | f31f72947b053eb252e73cc9403bfccbbc11333d /docker/debian-dev/bootstrap/bash-profile | |
parent | a6798ef93398925f82b02348024d0e1507da0c9d (diff) | |
download | crupest-47a626b854f4125dd9e3fbb7f222398668a50267.tar.gz crupest-47a626b854f4125dd9e3fbb7f222398668a50267.tar.bz2 crupest-47a626b854f4125dd9e3fbb7f222398668a50267.zip |
(docker:debian-dev) add dquilt.
Diffstat (limited to 'docker/debian-dev/bootstrap/bash-profile')
-rwxr-xr-x | docker/debian-dev/bootstrap/bash-profile/bash-completion.bash | 4 | ||||
-rwxr-xr-x | docker/debian-dev/bootstrap/bash-profile/dquilt.bash | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/docker/debian-dev/bootstrap/bash-profile/bash-completion.bash b/docker/debian-dev/bootstrap/bash-profile/bash-completion.bash new file mode 100755 index 0000000..75f8333 --- /dev/null +++ b/docker/debian-dev/bootstrap/bash-profile/bash-completion.bash @@ -0,0 +1,4 @@ +if [ -f /etc/bash_completion ]; then + . /etc/bash_completion +fi + diff --git a/docker/debian-dev/bootstrap/bash-profile/dquilt.bash b/docker/debian-dev/bootstrap/bash-profile/dquilt.bash new file mode 100755 index 0000000..a0a469b --- /dev/null +++ b/docker/debian-dev/bootstrap/bash-profile/dquilt.bash @@ -0,0 +1,3 @@ +alias dquilt="quilt --quiltrc=${HOME}/.quiltrc-dpkg" +. /usr/share/bash-completion/completions/quilt +complete -F _quilt_completion $_quilt_complete_opt dquilt |