Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/mksh
- find "$1/"* -print0|while read -d $'\0' i
- do
- if [[ "$(file "$i")" = *"POSIX"* ]]
- then
- if ! checkbashisms "$i" 2>/dev/null >/dev/null
- then
- echo "$i"
- fi
- fi
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement