Files
fubar/target-triplet-to-arch.sh
2026-07-30 09:56:33 +05:30

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