lucicos/target-triplet-to-arch.sh

7 lines
118 B
Bash
Executable File

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