#!/bin/sh

# Get the long user name
user_name=`finger $USER | grep Name | sed 's/^.*Name: //'`
warning="Be careful $user_name, I could be an evil script."

# For the deaf
clear
echo $warning

# For others:
osascript -e "set volume output volume 80"
osascript -e "say \"${warning}\""
