#!/bin/sh

# first
# Tento skript vyhled v aktulnm adresi vechny soubory, 
# kter obsahuj etzec POSIX, a pot vype jejich nzvy 
# do standardnho vstupu.

for file in *
do
  if grep -q POSIX $file 
  then
    echo $file 
  fi
done

exit 0
