Where does '.' and '..' come from?

后端 未结 3 420
青春惊慌失措
青春惊慌失措 2021-02-01 03:06

What\'s the story behind our massive repitition of ./foo and cd ... Where do these two . and .. come from? Where could they b

相关标签:
3条回答
  • 2021-02-01 03:06

    Excerpt from an interview with Ken Thompson (9-6-89):

    Every time we made a directory, by convention we put it in another directory called directory - directory, which was dd. Its name was dd and that all the users directories and in fact most other directories, users maintain their own directory systems, had pointers back to dd, and dd got shortened into ‘dot-dot,’ and dd was for directory-directory.

    0 讨论(0)
  • 2021-02-01 03:09

    I believe it was invented by Dennis Ritchie at Bell Labs in the early years of Unix.

    0 讨论(0)
  • 2021-02-01 03:19

    I'm sorry I can't answer properly, but I can recommend these links:

    • The Evolution of the Unix Time-sharing System and
    • A Brief history of the BSD Fast File System

    for some interesting historical notes on early file systems and their use.

    Other than that, the earliest reference I've found is the 1974 paper "The UNIX Time-Sharing System" by Dennis Ritchie and Ken Thompson. The precursor of UNIX, Multics, also had hierarchical file systems and the notion of relative paths, but according to "Introduction to MULTICS" it used another notation for that.

    0 讨论(0)
提交回复
热议问题