Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: (OT) Bash Tabbing

by zigdon (Deacon)
on Aug 23, 2006 at 21:00 UTC ( [id://569210]=note: print w/replies, xml ) Need Help??


in reply to (OT) Bash Tabbing

I'm almost 100% sure you - I use zsh, and I know you can do it there. I think there's nothing here that's zsh specific though:
function hosts {set -A reply $($HOME/bin/gethosts)} compctl -K hosts -x 'c[-1,-l]' -u -- ping ssh telnet traceroute
This makes tab completion call my gethosts script whenever I try to tab as the first argument of ping, ssh, telent or traceroute. My gethosts script is pretty simple:
#!/usr/bin/perl -w use strict; my $HOME= $ENV{HOME}; open (HOSTS, "$HOME/.ssh/known_hosts") or exit; my @hosts = <HOSTS>; close HOSTS; foreach my $line (@hosts) { chomp($line); my ($name) = split /\s+/, $line, 2; my @names = split /,/, $name; foreach (@names) { print "$_ "; } }
So it returns an bash array (a list of space separated strings) of all the hostnames and ips in my .know_hosts file.

-- zigdon

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://569210]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (2)
As of 2024-04-20 03:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found