How can I concatenate a shell variable to other other parameters in my command lines ?
For example,
#!/bin/sh
WEBSITE="danydiop"
/usr/bin/mysqldump --opt -u root --ppassword $WEBSITE > $WEBSITE.sql
I need to concatenate ".sql" to $WEBSITE
thanks