How do you run a "shell built-in command" inside a Unix shell script?
I'm trying to source a startup file but when I execute the file an error occurs
#!/bin/sh
echo "start"
source .cshrc
echo "finish"
colt 27% temp
start
temp[3]: source: not found
finish
colt 28%
Thanks
Marty