Here are 3 little tips for using find under AIX to search files by specific i-node attribute, without descending into subdirectories (maxdepth 1).
1) Install find from AIX Linux toolbox
2)
Code:
find . ! -name . -prune -type f
3)
Code:
find * -prune -type f
In this case, the metacharacter star will instruct
find to operate in the current directory. So you can either cd to desired dir, or
Code:
find /path/to/dest/dir/* -prune -type f