#!/bin/sh

touch file_one
rm -f file_two

if [ -f file_one ] && echo "hello" && [ -f file_two ] && echo "there"
then
    echo -e "in if"
else
    echo -e "in else"
fi

exit 0
