arm-linux-gcc problem

Javi
Hi, I have a problem installing the arm-linux-gcc.
The steps that follow are:
Unzip the file with the following order:
# Tar xfzv arm-linux-gcc-4.3.2.tgz-C /
Included in the PATH HOST development tools:
# Export PATH = / usr/local/arm/4.3.2/bin: $ PATH
# Arm-linux-gcc-o hello hello.c
And I get the following error:
"/ Usr/local/arm/4.3.2/bin/arm-linux-gcc: line 1: syntax error:"
("unexpected"
Could someone help me?
Thanks.

davef
I'd start with copying the script you have been given more carefully.

tar -xzf arm-linux-gcc-4.3.2.tgz
export PATH=/usr/local/arm/4.3.2/bin:$PATH
arm-linux-gcc-o hello hello.c

I assume you have some hello.c code somewhere to compile.