Jump to content

sed problems - Bash Script

spbr

Hi

I keep getting the following error

sed: -e expression #1, char 32: unterminated `s' command
sed: -e expression #1, char 35: unterminated `s' command
sed: -e expression #1, char 35: unterminated `s' command

whenever I use the following bash script

#! /bin/bash
mailgmail="smtp\.gmail\.com:587"
mailyahoo="smtp\.mail\.yahoo\.com:587"
echo "Email:"
        read emailuse
echo "Password:"
        read emailpass
sed -i "6s/.*/root=$emailuse/" /etc/ssmtp/ssmtp.conf
sed -i "25s/.*/AuthUser=$emailuse/" /etc/ssmtp/ssmtp.conf
sed -i "26s/.*/AuthPass=$emailpass/" /etc/ssmtp/ssmtp.conf
if [[ "$emailuse" == *"gmail"* ]]; then
        sed -i "10s/.*/mail=$mailgmail" /etc/ssmtp/ssmtp.conf
        sed -i "23s/.*/mailhub=$mailgmail" /etc/ssmtp/ssmtp.conf
        sed -i "28s/.*/mailhub=$mailgmail" /etc/ssmtp/ssmtp.conf
elif [[ "$emailuse" == *"yahoo"* ]]; then
        sed -i "10s/.*/mail=$mailyahoo" /etc/ssmtp/ssmtp.conf
        sed -i "23s/.*/mailhub=$mailyahoo" /etc/ssmtp/ssmtp.conf
        sed -i "28s/.*/mailhub=$mailyahoo" /etc/ssmtp/ssmtp.conf
else
        echo "Use another email address with yahoo or gmail"
fi

Thank you

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×