#!/bin/sh

for f in "$@"; do
	if [ -e "$f" ]; then
		printf "lsattr: Operation not supported While reading flags on %s\\n" "$f"
	else
		printf "lsattr: No such file or directory while trying to stat %s\\n" "$f"
	fi 1>&2
done
false
