The bash-completion tag has no wiki summary.
8
votes
1answer
169 views
How to Bash Complete Three-Part Pattern
I have a command line tool which takes arguments in an three-part form:
$ t first_second_third
I have a set of valid values for first, a set of valid values for second, and a set of valid values ...
0
votes
1answer
42 views
Makefile bash autocompletion issue with PHP generated targets
In a large Makefile managed project, I recently added some PHP generated targets and bash completion stopped working: pressing [tab] does not trigger completion, but inserts a tab character.
I ...
0
votes
1answer
31 views
bash-completion - completion function defined the first time a command is invoked
I've added a new alias scp_using_rsync, which uses rsync to copy files over SSH with certain options. I wanted to link the bash completion for scp to this alias.
It works when I add this line:
...
0
votes
1answer
53 views
Any bash/rails plugin to autocomplete/suggest migration versions?
Every time I have to run/redo a particular migration in my rails app, I have to go through the following steps to obtain the exact version number:
grep - Search the files in the db/migrate folder ...
0
votes
0answers
48 views
bash completion directory style partial suggestion printing
I am working on a script called to that bookmarks file system locations in bash (with limited support for zsh). You can find the source here: https://github.com/resultsreturned/to
The script supports ...
1
vote
1answer
65 views
ZSH completion from script prompt (like BASH's read -e)
In a bash shell script you can prompt the user for input and enable readline completion for the user with the -e flag. (e.g. read -e -p 'GET YOUR FILE: ' file would allow a the user to use ...
1
vote
1answer
68 views
Bash completion after redirection symbol
When I try to complete a path after a redirect symbol, bash completion behaves as though it is still trying to complete arguments to the command before the redirect.
For example:
dpkg -l > ...
-1
votes
1answer
113 views
Is there an autocomplete feature for folder and file names in bash? [closed]
I need to navigate to a certain directory and then execute a script located there.
I am using cd folder_name to navigate to the next directory.
One folder has a very long name (with white spaces). ...
0
votes
0answers
50 views
[SOLVED]git completion has garbled characters
This is helpful stackoverflow.com/q/11571163/462117
I use export GREP_OPTIONS='--color=always' to highlight grep result in .bashrc. Now, I changed it to export GREP_OPTIONS='--color=auto', the git ...
2
votes
1answer
84 views
zsh: How do I set autocomplete so that it inserts the completion when cursor is between text?
In my bash shell, when my cursor is between text, and I hit Tab, it autocompletes the filename, and when I hit Enter, it inserts the completion at the cursor, and everything after the cursor remains, ...
3
votes
2answers
170 views
Ignore file extension in bash completion for vim
I wrote a small bash function to provide completion for vim. The function is the following:
# completion for vim
_vim()
{
local cur prev
COMPREPLY=()
_get_comp_words_by_ref cur prev
...
0
votes
2answers
89 views
bash completion of built-in commands [closed]
Where are the completion scripts for commands such as cd and ls and other built-in bash commands?
I looked in /etc/bash_completion.d/ but they are not there.
3
votes
1answer
185 views
Getting compgen to include slashes on directories when looking for files
I'd like to get the following behavior from my custom completion
Given
$ mkdir foo
$ touch faz foo/bar foo/baz
I'd like to get this
$ foo -u <tab><tab> =>
foo faz/
$ foo -u ...
0
votes
0answers
62 views
Remote Subversion URL Completion in Bash
Has anybody added Bash completion support for remote urls in svn commands? It could typically be implemented through parsing of calls to svn ls.
3
votes
1answer
386 views
Why the backslash in bash? [closed]
I exported a variable in ~/.bashrc as follows (followed by source ~/.bashrc)
export w=/home/user/workspace/
When I'm on commandline I try to access sub-directories of $w in following way
user$ vi ...
0
votes
0answers
51 views
Transfering variables from ctl file to bash shell script
I'm using bash shell with an Ubuntu version.
The problem which I'm dealing with is as follows:
I had defined some variables in .ctl files and when I want to transfer the values of those variables to ...
0
votes
2answers
163 views
bash completion isn't working like it used to — not escaping spaces and oddities in filenames, etc [duplicate]
Okay, I just don't understand why this isn't working automatically.
When I'm working on my mac, spaces and other odd characters get escaped automatically when I do autocomplete in bash, but on my ...
0
votes
2answers
63 views
bash completion for teamocil
I'm trying to define bash auto-completion for teamocil so that when I type teamocil <tab> it should complete with the file names in the folder ~/.teamocil/ without the file extensions. There's ...
0
votes
1answer
118 views
bash history CTRL+R behaviour [closed]
Sometimes I try to search some command by CTRL+R and it's not found,
while I recently used it or search by CTRL+R with success.
Afer I run `history I'm able to find the command again.
Is this ...
1
vote
1answer
113 views
bash programmable tab completion with incremental directory completion
I have a program that can accept a large number of valid arguments. Many of these have common prefixes and are in a directory tree structure. The options often do not exist and some directories can be ...
1
vote
2answers
308 views
Bash: getting “complete” and “menu-complete” to work together
I found out that the Bash shell supports a type of autocompletion that is different from the "traditional" autocompletion, where all possibilities get listed on the following line.
With the ...
1
vote
1answer
127 views
Bash completion command
in my function I have
# Tab completion
if [ "$1" = "--complete" ]; then
shift
# Commands
for line in $(compgen -ac "notes_$1" | sed 's/^notes_//'); do
echo $line
done
# ...
0
votes
0answers
107 views
How do I handle a change in version numbering in an rpm spec?
I'm trying to update bash-completion on my CentOS 6.3 system. The latest supported version is 20060301, though there is a spec file for the 20080705 version in rpmforge's git repo.
Several years ago ...
2
votes
2answers
3k views
Git completion and PS1 not working: “__git_ps1: command not found” on “sudo -s” or “sudo su” on Ubuntu 12.04
I installed git and git-flow completion adding these line to .bashrc of root and a normal_user on a Ubuntu 12.04 machine:
source /etc/git-completion.bash
source /etc/git-flow-completion.bash
...
1
vote
3answers
197 views
bash autocompletion with file names
I can't get a simple bash autocompletion function to work. I need to autocomplete file names from a predefined directory so it will look like this:
user@localhost$ cmd log<TAB><TAB>
...
2
votes
2answers
609 views
Customize tab completion in shell
This may be have a better name than "custom tab completion", but here's the scenario:
Typically when I'm at the command line and I enter a command, followed with {TAB} twice, I get a list of all ...
8
votes
4answers
521 views
Bash Autocompletion - How to pass this array to compgen without significant whitespace being collapsed?
The following bash completion passes an array of possible words (i.e. completions) to compgen.
basenames=("foo" "fu bar" "baz");
COMPREPLY=($(compgen -W "${basenames[*]}" -- ...
14
votes
2answers
356 views
How to prevent bash completion from replacing a character when tab completing
I'm building a bash completion script for a tool which shares file uploading semantics with curl.
With curl, you can do:
curl -F var=@file
to upload a file.
My application has similar semantics ...
0
votes
1answer
130 views
Muti word command completion for bash [duplicate]
Possible Duplicate:
Properly handling spaces and quotes in bash completion
I would like to be use muti-word quoted strings for bash completion.
e.g. I like to be able to do this
$ command ...
2
votes
1answer
223 views
Conditional trailing space with bash programmable completion
I'm creating a function to provide programmable completion for a command that I use (with much help from http://www.debian-administration.org/articles/317). The shell script usage is as follows:
...
0
votes
2answers
349 views
Install Bash completion together with distutils / pip
I have created a simple Python module and want to distribute it with pip. I also want to install a Bash completion file together with the module.
I'm installing the module with Python 2.7.1+ and pip ...
0
votes
1answer
97 views
Failure to get bash completions when using the optcomplete module
I am trying to use python-optcomplete package (1.2-11.1 from Debian Testing):
$ cat /etc/bash_completion.d/optcomplete
_optcomplete()
{
COMPREPLY=( $( \
COMP_LINE=$COMP_LINE ...
0
votes
1answer
255 views
Nested bash autocompletion script
I've been trying to add bash completion support to a command line program I've been using lately, but it seems that I've hit a wall.
Here are the commands and subcommands I'd like to auto-complete
...
1
vote
3answers
108 views
In bash, how to expand the !$ while typing the command line?
Is there a way to expand the !$ in command line while interactively editing the command inside shell?
For example, while I am typing ls !$, I press some button and then I see what is the value of !$.
...
5
votes
2answers
367 views
Unit Test for Bash completion script
I would like to write a Unit Test for a (rather complex) Bash completion script, preferrably with Python - just something that gets the values of a Bash completion programmatically.
The test should ...
3
votes
1answer
344 views
Bash completion doesn't work for MSYS bash. Regex syntax error
I tried to install bash-completion for MSYS bash, but it seems it contains some syntax errors.
It fails with the following message
bash: /usr/local/share/bash-completion/bash_completion: line 625: ...
3
votes
1answer
225 views
Bash completion - how to get rid of unneeded tab presses?
I use
cur="${COMP_WORDS[COMP_CWORD]}"
opts=`sqlite3 test.db "${QUERY[COMP_CWORD]}"`
SAVEIFS="$IFS"
IFS=$'\n'
COMPREPLY=( $(compgen -S"'" -P"'" -W "${opts}" $cur) )
IFS="$SAVEIFS"
to get ...
9
votes
2answers
99 views
Unexpected bash directory listing with *
I have a issue with case sensitive directory listing in my bash. for example
$ touch nohupa nohuPb
$ ls nohup*
nohupa nohuPb
However I do expect it only list nohupa not nohuPb. because ...
0
votes
1answer
85 views
Load bash_completion script asynchronously
The bash_completion script in my .bash_profile script is running slowly, making new terminals very slow to start up. Is it possible to present a shell for running commands, and then source the ...
20
votes
3answers
2k views
Python argparse and bash completion
I would like to get auto-completion on my python scripts also in the arguments.
I had never really understood how the bash_completion worked (for arguments), but after I digged in I understood that:
...
2
votes
2answers
221 views
Autocomplete tool command options
I have an executable by the name cmmget in my Linux machine. It is a command line tool. I wish to develop an auto-complete feature for the different options of the tool.
Some example of the commands ...
2
votes
1answer
478 views
Reverse incremental search in Cshell
I am using Cshell at the office, and it does not seem to have reverse incremental search for history. Is there any way to enable reverse-i-search (like the one in bash) in cshell.
Thanks.
1
vote
2answers
118 views
completion-prefix-display-length doesn't work on my terminal.app
I've found a lot of questions on .inputrc, and the answers included people using Mac OS X terminal.app.
But I've set this property on and it didn't change readline's behaviour. I tried the same ...
3
votes
2answers
1k views
Running bash commands in the background without printing job and process ids
To run a process in the background in bash is fairly easy.
$ echo "Hello I'm a background task" &
[1] 2076
Hello I'm a background task
[1]+ Done echo "Hello I'm a background ...
1
vote
2answers
426 views
How can I get the GIT_PS1_SHOWDIRTYSTATE to not run against a bare repo?
So I've set up bash autocompletion for my install of git, and that rocks. However, I've got a bare repo that I occasionally have to directly interface with (git reset, for example), and any time I cd ...
0
votes
0answers
94 views
Bash Substring File Completion
Does bash partial/substring file completion similar to what zsh does?
4
votes
3answers
518 views
Bash tab completion changed behavior
For a long time, I have been used to being able to type something like:
$opt/foo/m
and so on to navigate my project within different environments. It is really useful: just set up $opt (say, ...
4
votes
4answers
420 views
bash autocompletion: add description for possible completions
Is it possible to make bash auto-completion look like in Cisco IOS shell?
I mean to add short descriptions for each completion, like this:
telnet 10.10.10. (TAB Pressed)
10.10.10.10 - routerA
...
3
votes
2answers
105 views
Conflict between branch and file completion in bash/git
I'm using the bash completion script for git. However, there are situations where it doesn't work. Say I have a branch foo-branch, and a file foo-file. If I have changes in the file which I want to ...
2
votes
5answers
182 views
Can zsh or bash expand history expressions referring to directories?
For example, let's suppose I just copied something:
mv foo_file.txt ~/to/some/long/path/that/i/do/not/want/to/retype
and I'd like to use history substitution like so:
mv bar_file.txt !!:2
I'm ...

