您现在的位置是:首页 >技术交流 >Linux使用shell脚本判断cpu架构网站首页技术交流

Linux使用shell脚本判断cpu架构

萧萧 2023-06-17 12:00:02
简介Linux使用shell脚本判断cpu架构

sh文件示例如下:

#!/bin/sh
SCRIPTDIR="$( cd "$( dirname "$0"  )" && pwd  )"
dlldir=$SCRIPTDIR
cd `dirname $0`
get_arch=`arch`
dotnetName="dotnet"
if [[ $get_arch =~ "x86_64" ]];then
    echo "this is x86_64"
    if [ ! -f dotnet ];then
        tar xvf aspnetcore-runtime-3.1.30-linux-x64.tar.gz
    fi
    dotnetName="./dotnet"
elif [[ $get_arch =~ "aarch64" ]];then
    echo "this is arm64"
elif [[ $get_arch =~ "mips64" ]];then
    echo "this is mips64"
else
    echo "unknown!!"
fi

风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。