User Tools

Site Tools


bash

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
bash [2017/07/02 02:13] – old revision restored (2013/05/08 17:56) k2patelbash [2020/08/10 02:35] (current) – external edit 127.0.0.1
Line 271: Line 271:
 </code> </code>
  
 +
 +==== Bash alias and complition ====
 +Using command completion for alias in bash.
 +<code bash ~/.bash_profile>
 +alias c='/usr/bin/ssh'
 +export HLIST
 +HLIST=`cat ~/.ssh/known_hosts | cut -f 1 -d ' ' | sed -e s/,.*//g | uniq | grep -v "\["`
 +HLIST="${HLIST} $(cat ~/.ssh/config | grep Host | awk '{print $2}' | grep -v \*)"
 +HLIST=$(echo ${HLIST} | sort | uniq)
 +complete -W "${HLIST}" c
 +</code>
  
 ==== Control case ==== ==== Control case ====
bash.1498961631.txt.gz · Last modified: 2020/08/10 02:28 (external edit)