7 lines
123 B
Bash
Executable file
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
|