#!/bin/sh

if [ -f /bin/bash ]
then
  echo "soubor /bin/bash existuje"
fi

if [ -d /bin/bash ]
then
  echo "/bin/bash je adres"
else
  echo "/bin/bash NEN adres"
fi

