#!/bin/sh echo "hello what is your name?" read name if [ "$name" = "alinne" ]; then echo "$name is a beautiful name!" echo "nice to meet you" else echo "hello $name" fi