Hey there,
If you're doing this for C, you can just use quotes instead of the angle brackets, like
#include "/home/yourdir/myInclude/header.sh"
If you're using a shell and your includes are functions, you can put them in your .profile, as advised above or just create your header.sh file and source it at the head of all of your script like:
#!/bin/bash
. /home/yourdir/myIncludes/header.sh
code
code
code
and you'll be all set :)
, Mike