<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>${me:-whatever} &#187; ssh</title>
	<atom:link href="http://samrowe.com/wordpress/tag/ssh/feed/" rel="self" type="application/rss+xml" />
	<link>http://samrowe.com/wordpress</link>
	<description></description>
	<lastBuildDate>Tue, 01 May 2012 14:02:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Bash SSH Happiness</title>
		<link>http://samrowe.com/wordpress/2008/07/29/bash-ssh-happiness/</link>
		<comments>http://samrowe.com/wordpress/2008/07/29/bash-ssh-happiness/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 03:07:23 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=81</guid>
		<description><![CDATA[So Dennis? (whose name doesn&#8217;t appear anywhere on his blog except for in the URL) wrote a cool bash script to create aliases for every host in your ~/.ssh/known_hosts file. I found some bugs/problems so I spiffed it up a bit. As the comments say, you should pipe the output to sort(1). I&#8217;ve tried to [...]]]></description>
			<content:encoded><![CDATA[<p>So <a href="http://blogs.ubuntu-nl.org/dennis/2008/07/29/traincoding-ssh-aliases/#comment-94888">Dennis</a>? (whose name doesn&#8217;t appear anywhere on his blog except for in the URL) wrote a cool bash script to create aliases for every host in your ~/.ssh/known_hosts file. I found some bugs/problems so I spiffed it up a bit. As the comments say, you should pipe the output to sort(1). I&#8217;ve tried to make the text as small as possible, but it won&#8217;t all display. I tested selecting it and even the parts that don&#8217;t display end up in my clipboard, so there ya go.</p>
<pre>#!/bin/bash
shopt -s extglob
isint(){
    case $1 in
        ?([-+])+([0-9]) )
            return 0;;
        *) return 1;;
            esac
}

if [[ -d ~/.ssh ]]; then

    # Touch files we expect to exist
    if [[ ! -e ~/.ssh/config ]]; then touch ~/.ssh/config; fi
    if [[ ! -e ~/.ssh/known_hosts ]]; then touch ~/.ssh/known_hosts; fi

    # Parse ~/.ssh/known_hosts and ~/.ssh/config to find hosts
    for x in `sed -e 's/[, ].*//' ~/.ssh/known_hosts; awk '/^Host [^*?]+$/{print $2}' ~/.ssh/config`; do

        # Don’t override commands
        type "${x}" &gt; /dev/null 2&gt;&amp;1 &amp;&amp; continue

        # Remove the domainname
        y=${x%%.*}
        # you don't want IP addresses for aliases, trust me.
        isint $y &amp;&amp; continue

        # If it's a short-name, move on
        #z=${x##*.}
        #[[  "${z}" == 'edu' ||  "${z}" == 'com' || "${z}" == 'net' ]] || continue
        # So the above is commented out because you'd be surprised at how much
        # you rely on your search path. You should pipe the output of this script to
        # sort and your fqdn's will override your shorts.
        echo alias "${x}"=”ssh $x”

        if [[ "$y" != "$x" ]]; then
            if ! type $y &gt; /dev/null 2&gt;&amp;1; then
            echo     alias $y=”ssh $x”
            fi
        fi
    done
fi</pre>
<p>Dennis also mentions that you might want to add <code>HashKnownHosts no</code> to your ~/.ssh/config file. If you have some hashed keys in your file, you should remove them before running this script. Sadly I couldn&#8217;t find any way to programmatically convert a hashed file into a non-hashed file. But to make up for it, here&#8217;s a bonus alias!</p>
<pre># removes _exactly what you type_ from ~/.ssh/known_hosts
# meaning 'grapes' gets you the key for 'grapes' vs 'grapes.wrath.com'
alias forget="ssh-keygen -R"</pre>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2008/07/29/bash-ssh-happiness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash &amp; Screen</title>
		<link>http://samrowe.com/wordpress/2008/07/15/bash_and_screen/</link>
		<comments>http://samrowe.com/wordpress/2008/07/15/bash_and_screen/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 01:59:00 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=1</guid>
		<description><![CDATA[You may be familiar with my tutorial on getting your ssh-agent to work inside screen. If not, have a look. There&#8217;s always room for improvements! Here&#8217;s an excerpt from my current .bash_profile: function Attach(){ grabssh if [[ -z "${1}" ]] ; then local n=`screen -wipe &#124; egrep -i 'attached&#124;detached' &#124; wc -l` if [[ "${n}" [...]]]></description>
			<content:encoded><![CDATA[<p>You may be familiar with my <a title="deadman.org tutorial" href="http://deadman.org/sshscreen.html">tutorial</a> on getting your ssh-agent to work inside screen. If not, have a look.</p>
<p>There&#8217;s always room for improvements! Here&#8217;s an excerpt from my current .bash_profile:</p>
<pre>
function Attach(){
    grabssh
    if [[ -z "${1}" ]] ; then
        local n=`screen -wipe | egrep -i 'attached|detached' | wc -l`
        if [[ "${n}" -gt 1 ]]; then
            check_screen
            return
        fi
    fi
    echo screen -d -R ${*}
    screen -d -R ${*}
}

check_screen () {
  # Look in the path?
    type screen > /dev/null 2>&#038;1
    if [[ ${?} = 0 ]]; then
        tmp=0
        echo
        for scr in `screen -wipe | egrep -i 'attached|detached' | awk '{print $1"_"$2}'`
        do
            echo "Screen available: ${scr}"
            if [[ ${tmp} -eq 0 ]] ; then
                myscreen=${scr%_*}
            fi
            tmp=$(($tmp+1))
        done
        if [[ -n "${myscreen}" ]] ; then
            echo
            echo "Enter to attach to ${myscreen},"
            echo "'n' to move on,"
            echo "unique bits to attach elsewhere"
            read eon
            if [[ -z "${eon}" ]] ; then
                [[ -z "${myscreen}" ]] &#038;&#038; return
                eon=${myscreen}
            fi
            if [[ "${eon}" != 'n' ]] ; then
                Attach ${eon}
            fi
        fi
    fi
}

[[ -n "$PS1" ]] &#038;&#038; check_screen
</pre>
<p>If screen(s) exist, I&#8217;m presented with a list of them on login. I&#8217;m then able to hit return for a default, or type in which of them I wish to resume.</p>
<p>If I don&#8217;t want to resume any screen I can simply hit &#8216;n&#8217; and go on about my day.</p>
<p>The Attach and check_screen functions are actually in a different file that is sourced by .bashrc and conditionally by .bash_login. This allows the functions to be used in non-login shells (in local terminal windows for example).</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2008/07/15/bash_and_screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

