Name: Anonymous 2012-02-07 10:24
How could I make a shellscript which will echo "Welcome home, oniichan!" whenever I cd to my home directory?
#!/bin/sh
cd "$@"
if [ $PWD = $HOME ]
then
echo "Welcome home, weeaboo!"
fialias cd=~/bin/cd