#!/bin/sh
# test2

ls -l x* >& /dev/null
if (test $? -gt 0)
then
  echo NO
  exit 0
fi
echo Yes!!
  
