返回顶部
首页 > 资讯 > 操作系统 >linux rc的含义是什么
  • 138
分享到

linux rc的含义是什么

2023-07-05 13:07:52 138人浏览 安东尼
摘要

本篇内容主要讲解“linux rc的含义是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“linux rc的含义是什么”吧!linux rc是runcom的缩写,也是“.cshrc”或“/et

本篇内容主要讲解“linux rc的含义是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“linux rc的含义是什么”吧!

linux rc是runcom的缩写,也是“.cshrc”或“/etc/rc”中出现的rc;rc来源于runcom,首次出现于1965年的MIT CTSS系统;在某些场景中,会执行被存储在文件中的多条命令commands,我们称之为runcom,即运行命令run commands的简称。

Linux rc 含义全称

这要从Unix系统的史前时代(1961-1969)开始讲起,在一开始由MIT为主力开发过一个兼容分时系统(Compatible Time-Sharing System),简称CTSS。
(这个CTSS他功能虽然比不了后来的Unix系统,但是人家辈分大,年代早。)
CTSS系统中有一个关于命令脚本的特性叫做runcom
为了致敬这个古早版本Unix系统——CTSS的runcom特性,后来的Unix系统中就用rc作为操作系统的启动文件名。

Tips
程序语言里的Date是从1970-01-01开始的,
linux rc的含义是什么

而前面提到的Unix的史前时代(1961-1969)还在1970年之前。
也可以侧面感受到CTSS这个系统的“辈分”之大。

含义

rc = RunCom

“rc” 是取自 “runcom”, 来自麻省理工学院在 1965 年发展的 CTSS系统。相关文献曾记载这一段话:“具有从档案中取出一系列命令来执行的功能;这称为 run commands 又称为 “runcom”,而这种档案又称为一个 runcom (a runcom)。”

实例

  • .bashrc bash的运行命令

  • .vimrc vim的运行命令

  • .npmrc npm的运行命令

Linux中,文件名以.开头表示为隐藏文件。

linux rc的含义是什么

leung@wuyujin ~ % ls -al | grep rc$
-rw-------   1 leung  staff      33  5 13 20:34 .npmrc
-rw-r--r--   1 leung  staff     116  5 13 21:20 .yarnrc
-rw-r--r--   1 leung  staff      55  6  2 20:00 .zshrc

参考 What does rc mean in bashr, zshrc, vimrc etc?

What does rc mean in bashr, zshrc, vimrc etc?
linux rc的含义是什么

翻译如下:
对于rc所代表的意思,你可能会看到以下几种:

  • run commands(运行命令)

  • resource control(资源控制)

  • run control(运行控制)

  • runtime configuration(运行时配置)

在读过这份文档之后,我更愿意认为rcruncom的缩写。

rc = RunCom 就是.cshrc/etc/rc中出现的那个rc
rc来源于runcom,首次出现于1965年的MIT CTSS系统。

在某些场景中,(我们)会执行被存储在文件中的多条命令commands,我们称之为runcom即运行命令run commands的简称。
另外,这个用于存储命令的文件被称作:a runcom
Unix文件命名中的rc就是来自于这样的老典故。
— Brian Kernighan & Dennis Ritchie, as told to Vicki Brown

Also ESR states that in Run-Control Files:
当然,你也可以在 Run-Control文件中找到证据:
rc后缀一直往前追溯,会发现其实它在Unix的爷爷辈老系统——CTSS里就有了。
而在CTSS这个古早的系统中有一个命令脚本的特性叫做:runcom
于是早期Unix就开始使用rc作为操作系统启动脚本的文件名,以此来追忆/致敬 CTSS runcom。

所以我认为:rcruncom的缩写。

linux rc的含义是什么

CTSS(Compatible Time-Sharing System)兼容分时系统

Unix系统的背景
1961-1969:史前时代
CTSS(Compatible Time-Sharing System,兼容分时系统),以MIT为首的开发小组,小而简单的实验室原型。
Multics(Multiplexed InfORMation and Computing System,多路信息与计算系统),庞大而负责,不堪重负。
Unics(Uniplexed information and Computing System,单路信息与计算系统),返璞归真,走上正道。
1969-1971:创世纪
……

参考 Unix - Frequently Asked Questions (1/7) [Frequent posting]Section - What does {some strange unix command name} stand for

1.3)  What does {some strange unix command name} stand for?

     awk = "Aho Weinberger and Kernighan"

       This language was named by its authors, Al Aho, Peter
       Weinberger and Brian Kernighan.

     grep = "Global Regular Expression Print"

       grep comes from the ed command to print all lines matching a
       certain pattern

                   g/re/p

       where "re" is a "regular expression".

     fgrep = "Fixed GREP".

       fgrep searches for fixed strings only.  The "f" does not stand
       for "fast" - in fact, "fgrep foobar *.c" is usually slower than
       "egrep foobar *.c"  (Yes, this is kind of surprising. Try it.)

       Fgrep still has its uses though, and may be useful when searching
       a file for a larger number of strings than egrep can handle.

     egrep = "Extended GREP"

       egrep uses fancier regular expressions than grep.  Many people
       use egrep all the time, since it has some more sophisticated
       internal alGorithms than grep or fgrep, and is usually the
       fastest of the three programs.

     cat = "CATenate"

       catenate is an obscure Word meaning "to connect in a series",
       which is what the "cat" command does to one or more files.  Not
       to be confused with C/A/T, the Computer Aided Typesetter.

     gecos = "General Electric Comprehensive Operating Supervisor"
       
       When GE's large systems division was sold to Honeywell,
       Honeywell dropped the "E" from "GECOS".

       Unix's password file has a "pw_gecos" field.  The name is a
       real holdover from the early days.  Dennis Ritchie has reported:

           "Sometimes we sent printer output or batch jobs
            to the GCOS Machine.  The gcos field in the password file
            was a place to stash the information for the $IDENT card.
            Not elegant."

     nroff = "New ROFF"
     troff = "Typesetter new ROFF"
       
       These are descendants of "roff", which was a re-implementation
       of the Multics "runoff" program (a program that you'd use to
       "run off" a good copy of a document).

     tee       = T

       From plumbing terminology for a T-shaped pipe splitter.

     bss = "Block Started by Symbol"
       
       Dennis Ritchie says:

           Actually the acronym (in the sense we took it up; it may
           have other credible etymologies) is "Block Started by
           Symbol." It was a pseudo-op in FAP (Fortran Assembly [-er?]
           Program), an assembler for the IBM 704-709-7090-7094
           machines.  It defined its label and set aside space for a
           given number of words.  There was another pseudo-op, BES,
           "Block Ended by Symbol" that did the same except that the
           label was defined by the last assigned word + 1.  (On these
           machines Fortran arrays were stored backwards in storage
           and were 1-origin.)

           The usage is reasonably appropriate, because just as with
           standard Unix loaders, the space assigned didn't have to be
           punched literally into the object deck but was represented
           by a count somewhere.

     biff = "BIFF"

       This command, which turns on asynchronous mail notification,
       was actually named after a dog at Berkeley.

           I can confirm the origin of biff, if you're interested.
           Biff was Heidi Stettner's dog, back when Heidi (and I, and
           Bill Joy) were all grad students at U.C. Berkeley and the
           early versions of BSD were being developed.   Biff was
           popular among the residents of Evans Hall, and was known
           for barking at the mailman, hence the name of the command.

       Confirmation courtesy of Eric Cooper, Carnegie Mellon University

     rc (as in ".cshrc" or "/etc/rc") = "RunCom"

       "rc" derives from "runcom", from the MIT CTSS system, ca. 1965.

           'There was a facility that would execute a bunch of
           commands stored in a file; it was called "runcom" for "run
           commands", and the file began to be called "a runcom."

           "rc" in Unix is a fossil from that usage.'
       
       Brian Kernighan & Dennis Ritchie, as told to Vicki Brown

       "rc" is also the name of the shell from the new Plan 9
       operating system.

     Perl = "Practical Extraction and Report Language"
     Perl = "Pathologically Eclectic Rubbish Lister"

       The Perl language is Larry Wall's highly popular
       freely-available completely portable text, process, and file
       manipulation tool that bridges the gap between shell and C
       programming (or between doing it on the command line and
       pulling your hair out).  For further information, see the
       Usenet newsgroup comp.lang.perl.misc.

     Don Libes' book "Life with Unix" contains lots more of these
     tidbits.

到此,相信大家对“linux rc的含义是什么”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

--结束END--

本文标题: linux rc的含义是什么

本文链接: https://lsjlt.com/news/351796.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • linux rc的含义是什么
    本篇内容主要讲解“linux rc的含义是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“linux rc的含义是什么”吧!linux rc是runcom的缩写,也是“.cshrc”或“/et...
    99+
    2023-07-05
  • linux ppc64的含义是什么
    今天小编给大家分享一下linux ppc64的含义是什么的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来...
    99+
    2023-03-23
    linux
  • linux kernel的含义是什么
    今天小编给大家分享一下linux kernel的含义是什么的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起...
    99+
    2023-03-24
    linux kernel
  • linux i686的含义是什么
    本文小编为大家详细介绍“linux i686的含义是什么”,内容详细,步骤清晰,细节处理妥当,希望这篇“linux i686的含义是什么”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识...
    99+
    2023-03-24
    linux
  • linux server的含义是什么
    今天小编给大家分享一下linux server的含义是什么的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起...
    99+
    2023-03-19
    linux
  • linux epel的含义是什么
    这篇“linux epel的含义是什么”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“lin...
    99+
    2023-04-21
    linux epel
  • linux kde的含义是什么
    这篇文章主要讲解了“linux kde的含义是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“linux kde的含义是什么”吧! ...
    99+
    2023-04-22
    linux kde
  • linux mv的含义是什么
    今天小编给大家分享一下linux mv的含义是什么的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一...
    99+
    2023-04-19
    linux
  • Linux grub的含义是什么
    本文小编为大家详细介绍“Linux grub的含义是什么”,内容详细,步骤清晰,细节处理妥当,希望这篇“Linux grub的含义是什么”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识...
    99+
    2023-04-19
    linux grub
  • linux lun的含义是什么
    本篇内容介绍了“linux lun的含义是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成! ...
    99+
    2023-04-20
    linux
  • amazon linux的含义是什么
    这篇文章主要讲解了“amazon linux的含义是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“amazon linux的含义是什么”吧! ...
    99+
    2023-04-20
    linux
  • linux dash的含义是什么
    本篇内容介绍了“linux dash的含义是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成! ...
    99+
    2023-04-20
    linux dash
  • linux i386的含义是什么
    这篇文章主要介绍“linux i386的含义是什么”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“linux i386的含义是什么”文章能帮助大家解决问题。 ...
    99+
    2023-04-14
    linux
  • linux stty的含义是什么
    这篇文章主要介绍“linux stty的含义是什么”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“linux stty的含义是什么”文章能帮助大家解决问题。 ...
    99+
    2023-04-14
    linux stty
  • linux rm的含义是什么
    本文小编为大家详细介绍“linux rm的含义是什么”,内容详细,步骤清晰,细节处理妥当,希望这篇“linux rm的含义是什么”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。在linux中,rm全称“remove...
    99+
    2023-06-30
  • linux .exe的含义是什么
    本篇内容介绍了“linux .exe的含义是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!linux .exe是指exe文件;在Linu...
    99+
    2023-07-05
  • linux eof的含义是什么
    这篇文章主要介绍“linux eof的含义是什么”,在日常操作中,相信很多人在linux eof的含义是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”linux eof的含义是什么”的疑惑有所帮助!接下来...
    99+
    2023-07-05
  • Linux中点的含义是什么
    这篇文章主要介绍了Linux中点的含义是什么,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。Paul Brown 解释了 Linux shell 命令中那个不起眼的“点”的各种...
    99+
    2023-06-16
  • linux shell中$$的含义是什么
    这篇文章主要介绍“linux shell中$的含义是什么”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“linux shell中$的含义是什么”文章能帮助大家解决问题。在linux中,shell是一个...
    99+
    2023-06-29
  • linux中ll的含义是什么
    这篇文章主要讲解了“linux中ll的含义是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“linux中ll的含义是什么”吧!在linux中,“ll”是“ls -l”命令的别名,ls命令用...
    99+
    2023-06-29
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作