#!/bin/sh

rm -rf /tmp/test

cd /tmp/


mkdir test

touch test/testfile

chmod 0644 test/testfile

PATH=test

command -v testfile

echo $?
