#!/bin/sh

if [ $# != 1 ]; then
	echo usage: $0 path
	exit 1
fi

find $1 -type f -exec getfattr -n security.simple-flow.confidential {} \;
