OSX/UNIX Shell Commands with AppleScript?

is there anyway to execute a shell command from an applescript?

Yep. You can find out all about it in the Standard Addtions under Miscellaneous Commands.

 do shell script "the command"
do shell script "ls"

thanks