forked from znuny/Znuny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_completion
36 lines (32 loc) · 1.41 KB
/
.bash_completion
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# --
# Copyright (C) 2001-2021 OTRS AG, https://otrs.com/
# Copyright (C) 2021 Znuny GmbH, https://znuny.org/
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU AFFERO General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# or see http://www.gnu.org/licenses/agpl.txt.
# --
# This file will be automatically found and used for the 'otrs' user if you have the
# 'bash-completion' package installed. Otherwise you can source it in your ~/.bashrc like this:
#
# source /opt/otrs/.bash_completion
# Get path to current file, follow symlinks
THIS_FILE=$BASH_SOURCE
if [ -L $THIS_FILE ]; then
THIS_FILE=`readlink $THIS_FILE`;
fi
# Remove : from wordbreak delimiter because OTRS uses it in the command names
COMP_WORDBREAKS=${COMP_WORDBREAKS//:/}
# Configure bash completion
complete -C "$(dirname $THIS_FILE)/bin/otrs.Console.pl" otrs.Console.pl