Skip to content

Instantly share code, notes, and snippets.

View junho85's full-sized avatar
💭
Working

JunHo Kim (김준호) junho85

💭
Working
View GitHub Profile
@sng2c
sng2c / Test-Continuous-Quick-Guid-KO.md
Last active December 31, 2015 14:29
Test::Continuous Quick Guide
@peelman
peelman / known_hosts_autocomplete.sh
Created February 8, 2012 21:03
Bash AutoComplete from known_hosts
# add to ~/.bash_profile, and close/reopen a shell. Will autocomplete any hosts found in known_hosts.
complete -W "$(echo `cat ~/.ssh/known_hosts | cut -f 1 -d ' ' | sed -e s/,.*//g | uniq | grep -v "\["`;)" ssh