FENIX_main/target-triplet-to-arch.sh
2021-01-31 14:08:26 -06:00

7 lines
123 B
Bash
Executable file

#!/bin/sh
if echo "$1" | grep -Eq 'i[[:digit:]]86-'; then
echo i386
else
echo "$1" | grep -Eo '&[[:alnum:]_]*'
fi