#!/bin/bash

echo "I fell asleep on this machine:"
uname -a;
cat /proc/cpuinfo
sleep 12
echo "dreaming about a more powerful machine"
sleep 5
echo "It is already time to wake up!"


