our/cmds/ls

5 lines
93 B
Plaintext
Raw Normal View History

2022-08-24 02:40:36 +00:00
#!/bin/sh
DIR=$(dirname -- $0)
find $DIR/* -maxdepth 1 -perm -111 -type f -printf "%f "
echo