Syntax error when executing a bash shell script from busybox
Script
#!/bin/bash
for dev in `cat /proc/partitions | awk '{print $4}'`; do
if cmp -s <(head -c 2 /dev/$dev) <(echo -n -e '\x38\x6e')
then
echo "OK"
break
fi
done
Error line 3
Syntax error: "(" unexpected
