UNIX 音标拼音: [j'unɪks]
n .
UNIX 操作系统 ;
(
INTERNET 上常见的操作系统,
UNIX 本身非常适用于网络操作)
UNIX 操作系统 ; (
INTERNET 上常见的操作系统,
UNIX 本身非常适用於网络操作)
UNIX UNIX 作业系统;
UNIX 操作系统
UNIX n 1 :
trademark for a powerful operating system [
synonym : {
UNIX },
{
UNIX system }, {
UNIX operating system }]
/yoo 'niks / (Or "UNIX ", in the authors '
words , "A weak pun on Multics ") Plural "Unices ". An
interactive {time -sharing } {operating system } invented in 1969
by {Ken Thompson } after {Bell Labs } left the {Multics }
project , originally so he could play games on his scavenged
{PDP -7 }. {Dennis Ritchie }, the inventor of {C }, is considered
a co -author of the system .
The turning point in Unix 's history came when it was
reimplemented almost entirely in C during 1972 - 1974 , making
it the first {source -portable } OS . Unix subsequently
underwent mutations and expansions at the hands of many
different people , resulting in a uniquely flexible and
{developer }-friendly environment .
By 1991 , Unix had become the most widely used {multi -user }
general -purpose operating system in the world . Many people
consider this the most important victory yet of hackerdom over
industry opposition (but see {Unix weenie } and {Unix
conspiracy } for an opposing point of view ).
Unix is now offered by many manufacturers and is the subject
of an international standardisation effort [called ?].
Unix -like operating systems include {AIX }, {A /UX }, {BSD },
{Debian }, {FreeBSD }, {GNU }, {HP -UX }, {Linux }, {NetBSD },
{NEXTSTEP }, {OpenBSD }, {OPENSTEP }, {OSF }, {POSIX }, {RISCiX },
{Solaris }, {SunOS }, {System V }, {Ultrix }, {USG Unix }, {Version
7 }, {Xenix }.
"Unix " or "UNIX "? Both seem roughly equally popular , perhaps
with a historical bias toward the latter . "UNIX " is a
registered trademark of {The Open Group }, however , since it is
a name and not an acronym , "Unix " has been adopted in this
dictionary except where a larger name includes it in upper
case . Since the OS is {case -sensitive } and exists in many
different versions , it is fitting that its name should reflect
this .
{The UNIX Reference Desk
(http ://geek -girl .com /unix .html )}.
{Spanish fire extinguisher
(ftp ://linux .mathematik .tu -darmstadt .de /pub /linux /people /okir /unix_flame .gif )}.
[{Jargon File }]
(2001 -05 -14 )Unix : /
yoo ´
niks /,
n . [
In the authors '
words , “
A weak pun on Multics ”;
very early on it was “
UNICS ”] (
also “
UNIX ”)
An interactive timesharing system invented in 1969 by Ken Thompson after Bell Labs left the Multics project ,
originally so he could play games on his scavenged PDP -
7 .
Dennis Ritchie ,
the inventor of C ,
is considered a co -
author of the system .
The turning point in Unix '
s history came when it was reimplemented almost entirely in C during 1972 —
1974 ,
making it the first source -
portable OS .
Unix subsequently underwent mutations and expansions at the hands of many different people ,
resulting in a uniquely flexible and developer -
friendly environment .
By 1991 ,
Unix had become the most widely used multiuser general -
purpose operating system in the world —
and since 1996 the variant called Linux has been at the cutting edge of the open source movement .
Many people consider the success of Unix the most important victory yet of hackerdom over industry opposition (
but see Unix weenie and Unix conspiracy for an opposing point of view ).
See Version 7 ,
BSD ,
Linux .
Some people are confused over whether this word is appropriately ‘
UNIX ’
or ‘
Unix ’;
both forms are common ,
and used interchangeably .
Dennis Ritchie says that the ‘
UNIX ’
spelling originally happened in CACM '
s 1974 paper The UNIX Time -
Sharing System because “
we had a new typesetter and troff had just been invented and we were intoxicated by being able to produce small caps .”
Later ,
dmr tried to get the spelling changed to ‘
Unix ’
in a couple of Bell Labs papers ,
on the grounds that the word is not acronymic .
He failed ,
and eventually (
his words ) “
wimped out ”
on the issue .
So ,
while the trademark today is ‘
UNIX ’,
both capitalizations are grounded in ancient usage ;
the Jargon File uses ‘
Unix ’
in deference to dmr '
s wishes .
安装中文字典英文字典查询工具!
中文字典英文字典工具:
复制到剪贴板
英文字典中文字典相关资料:
The UNIX® Standard | www. opengroup. org Single UNIX Specification- “The Standard” The Single UNIX Specification is the standard in which the core interfaces of a UNIX OS are measured The UNIX standard includes a rich feature set, and its core volumes are simultaneously the IEEE Portable Operating System Interface (POSIX) standard and the ISO IEC 9945 standard
unix - what does $? mean in a shell script? - Stack Overflow I came across a shell script that contains a statement like, if [ $val -eq $? ] What does $? mean here?
unix - How to check permissions of a specific directory . . . - Stack . . . I know that using ls -l "directory directory filename" tells me the permissions of a file How do I do the same on a directory? I could obviously use ls -l on the directory higher in the hierarchy
What is the proper way to exit a command line program? 2 Take a look at Job Control on UNIX systems If you don't have control of your shell, simply hitting ctrl + C should stop the process If that doesn't work, you can try ctrl + Z and using the jobs and kill -9 %<job #> to kill it The '-9' is a type of signal You can man kill to see a list of signals
command line - How to close git commit editor? - Stack Overflow I just executed a command $ git commit and it opens a new editor But I'm trying to close that new commit editor How to do this? I'm using Git for Windows
Difference between CR LF, LF and CR line break types I'd like to know the difference (with examples if possible) between CR LF (Windows), LF (Unix) and CR (Macintosh) line break types
bash - How can I split a large text file into smaller files with an . . . I've got a large (by number of lines) plain text file that I'd like to split into smaller files, also by number of lines So if my file has around 2M lines, I'd like to split it up into 10 files t
git - How to change line-ending settings - Stack Overflow Is there a file or menu that will let me change the settings on how to deal with line endings? I read there are 3 options: Checkout Windows-style, commit Unix-style Git will convert LF to CRLF when
Find all files containing a specific text (string) on Linux How do I find all files containing a specific string of text within their file contents? The following doesn't work It seems to display every single file in the system find -type f -exec grep -H '
bash - What does 2 gt; 1 mean? - Stack Overflow To combine stderr and stdout into the stdout stream, we append this to a command: 2 gt; amp;1 For example, the following command shows the first few errors from compiling main cpp: g++ main cpp 2