No difference for a centos Bash script.
Except for the change directory and the launch of the script everything is just external program calls.
Make sure you have wget and tar installed from the correct rpms. Most setups will already have these in place.
English description of this code:
fetch some file (ehcp_latest.tgz) from ftp://www.ehcp.net/download to the current directory
Use the tar utility to extract the files to the current directory
Go into the ehcp directory
Run the script called install.sh from this directory
My first concern with this code is that the directory is not set at the beginning.
I would suggest the following above the wget
cd ~
That's a tilde.
This will set the default directory to the user's home directory
Second, the protocol is not specified on the wget command. Wget defaults to ftp.
I think you want this instead
wget http://www.ehcp.net/download
Lastly, the tar command will probably not leave the install.sh script executable so you may need
chmod 755 install.sh
right after the cd ehcp