You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
213 B

#!/bin/sh
info() { echo "$$ $*"; }
err() { echo "E: $$ $*" >&2; }
FILES="$(pwd -P)"
for x; do
if [ -L "$x" ]; then
err "$x: symlinks not supported"
elif [ -d "$x" ]; then
true
else
info "[$x]"
fi
done