rpm-build/scripts/shell.req.files
2018-05-23 17:00:54 +03:00

22 lines
416 B
Bash
Executable File

#!/bin/sh -efu
while IFS=$'\t' read -r f t; do
case "$t" in
#!/bin/sh
*'Bourne shell script text'*)
echo "$f" ;;
#!/bin/bash
*'Bourne-Again shell script text'*)
echo "$f" ;;
#!/usr/bin/env sh
*' sh script text'*)
echo "$f" ;;
#!/usr/bin/env bash
*' bash script text'*)
echo "$f" ;;
#!/bin/ash
*' /bin/ash script text'* |\
*' /bin/ash '*' script text'* )
echo "$f" ;;
esac
done