升级Remoting
大石头 authored at 2025-07-14 01:00:50
377.00 B
Stardust

#!/bin/bash

gzfile="aspnetcore-runtime-3.1.30-linux-x64.tar.gz"
if [ ! -f "$gzfile" ]; then
	wget "http://x.newlifex.com/dotnet/"$gzfile
fi
if [ ! -d "/usr/share/dotnet/" ]; then
	mkdir /usr/share/dotnet
fi
tar -xzf $gzfile -C /usr/share/dotnet
if [ ! -f "/usr/bin/dotnet" ]; then
	ln /usr/share/dotnet/dotnet /usr/bin/dotnet -s
fi

dotnet --info

rm $gzfile -f
rm net31.sh