#!/bin/bash

echo '<<<authorized_keys>>>'

keys="/root/.ssh/authorized_keys
/root/.ssh/authorized_keys2" 

for i in $keys ; do 
    if [ -f $i ] ; then
        echo "[[$i]]"
        cat $i 2>/dev/null

    fi
done

