⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 machine-type

📁 这是一款很好用的工具包
💻
字号:
#!/bin/csh -f##    File:   machine-type#    Author: The SRI DECIPHER (TM) System#    Date:   Thu Apr 13 17:01:24 1995##    Description:#      Determine machine type (sparc, mips, etc.) by#      running a program common to all UNIX systems,#      which will query the machine and return its#      identity. (Based on the Corona script of the same name)###    Copyright (c) 1995, SRI International.  All Rights Reserved.##    RCS ID: $Id: machine-type,v 1.9 2005/09/30 22:55:35 stolcke Exp $##    $Log: machine-type,v $#    Revision 1.9  2005/09/30 22:55:35  stolcke#    support x86_64 platform##    Revision 1.8  2005/09/20 04:47:36  stolcke#    support ppc64##    Revision 1.7  2003/04/19 16:57:36  stolcke#    freebsd support##    Revision 1.6  2003/02/21 22:04:38  stolcke#    support for MacOSX##    Revision 1.5  2002/07/09 15:06:17  stolcke#    handle i386-solaris case##    Revision 1.4  2002/02/11 08:26:43  stolcke#    detect cygwin platform##    Revision 1.3  1999/10/22 08:29:18  stolcke#    fixed syntax errors#    removed reference to DECIPHER#    recognizer IRIX6 systems##    Revision 1.2  1999/02/20 07:15:40  stolcke#    added support for linux/i686## Revision 1.2  1995/04/22  03:25:34  stolcke# use 'uname -m' (hardware name) to determine cpu type# (since the same OS may in fact support several cpu types)## Revision 1.1  1995/04/22  01:06:00  tmk# Initial revision####    NOTE:  (tmk 950414)##	  Usually this script is called in a line like ##		> setenv MACHINE_TYPE `$DECIPHER/bin/machine-type`##	  So you want to generate a visible warning if this script can't##	  figure out the right string to return.  Returning a string##	  like "ERROR: Unsupported machine type: "$RESULT will silently##	  push the problem further down the line, as now the environment##	  variable MACHINE_TYPE is defined as "ERROR:....."  The##	  approach I've taken generates the message ##	  "MACHINE_TYPE: Undefined variable."##	  and leaves the MACHINE_TYPE variable defined as a null string.set RESULT = (`uname -a`)if ($#RESULT > 0) then    if ($RESULT[5] =~ IP*) then	# "IP" is an irix processor	if ($RESULT[3] =~ 4.*) then	    set MACHINE_TYPE = mips	else if ($RESULT[3] =~ [56].*) then            set MACHINE_TYPE = mips-elf	else	    ## Generate an error by doing nothing.  (Used to be the line below:)	    ## echo "ERROR: Unsupported machine type: "$RESULT  	endif    else if ($RESULT[5] =~ sun4*) then#	set MACHINE_TYPE = sparc	if ($RESULT[3] =~ 4.*) then	    set MACHINE_TYPE = sparc	else if ($RESULT[3] =~ 5.*) then	    set MACHINE_TYPE = sparc-elf	else	    ## Generate an error by doing nothing.  (Used to be the line below:)	    ## echo "ERROR: Unsupported machine type: "$RESULT	endif    else if ($RESULT[5] == i86pc) then	set MACHINE_TYPE = i386-solaris    else if ($RESULT[5] == alpha) then	set MACHINE_TYPE = alpha    else if (`uname -m` == ppc64) then	set MACHINE_TYPE = ppc64    else if (`uname -s` =~ CYGWIN*) then	set MACHINE_TYPE = cygwin    else if (`uname -s` =~ FreeBSD*) then	set MACHINE_TYPE = freebsd    else if (`uname -s` == Darwin) then	set MACHINE_TYPE = macosx    else if (`uname -m` == i686) then	set MACHINE_TYPE = i686    else if (`uname -m` == x86_64) then	set MACHINE_TYPE = i686-m64    else	## Generate an error by doing nothing.  (Used to be the line below:)	## echo "ERROR: Unsupported machine type: "$RESULT    endifelse    ## Generate an error by doing nothing.  (Used to be the line below:)    ## echo "ERROR: Unsupported machine type: "$RESULTendif## NOTE:  If we couldn't figure out the MACHINE_TYPE by this point, the##        following line generates an error, rather than returning a##	  string containing the word "ERROR".  This is still not great ##	  error handling, but it's slightly better.  echo $MACHINE_TYPE

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -