惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

W
WeLiveSecurity
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
The Register - Security
The Register - Security
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
T
Threat Research - Cisco Blogs
S
SegmentFault 最新的问题
V2EX - 技术
V2EX - 技术
Hacker News: Ask HN
Hacker News: Ask HN
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
P
Proofpoint News Feed
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
AI
AI
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
P
Proofpoint News Feed
Hacker News - Newest:
Hacker News - Newest: "LLM"
B
Blog
N
News and Events Feed by Topic
N
News | PayPal Newsroom
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
C
Cybersecurity and Infrastructure Security Agency CISA
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
U
Unit 42
腾讯CDC
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
The Cloudflare Blog
H
Help Net Security
Recent Announcements
Recent Announcements
P
Privacy & Cybersecurity Law Blog
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Security Archives - TechRepublic
Security Archives - TechRepublic
L
LINUX DO - 热门话题
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
H
Heimdal Security Blog
博客园 - 聂微东
S
Securelist
大猫的无限游戏
大猫的无限游戏
Cloudbric
Cloudbric
Cisco Talos Blog
Cisco Talos Blog

博客园 - 丁兆丰

WAPI 简介 Python IDE 原理.002.手机工作原理 原理.001.电话工作原理 Google AdSense 申请总是没获批准??? 推荐:一个资料下载的好论坛:美河论坛! 关于 Fedora NOR FLASH和NAND FLASH的比较 软件:WinCE.6.R2.Client (incl source) 转载:.Net Framework 风格的版本号命名格式 转载:Google.Chorme.收藏夹.导出工具 Windows CE.0004.Wince6 in vs2008 Windows CE.0003.Template Description Windows CE.0002.ERROR:Image is too large for current RAM and RAMIMAGE settings. 求助:怎样使签名中插入的音频文件能够播放? Windows CE.0001.Setup Windows CE 6 R2 来放松一下吧! Let it be me ! ---=== LET IT BE ===--- blogs is Started, thanks --- first.
Shell的类型
丁兆丰 · 2008-11-05 · via 博客园 - 丁兆丰

Shell的类型

类型列表

  • sh[Bourne Shell]

    最初的shell,并且仍然在UNIX系统和UNIX相关系统中使用。它是基本的shell,是一个特性不多的小程序。虽然不是一个标准的shell,但是为了UNIX程序的兼容性在每个Linux系统上仍然存在。

  • bash[Bourne Again shell]

    标准的GNU shell,直观而又灵活。或许是初学者的最明智选择同时对高级和专业用户来说也是一个强有力的工具。在Linux上,bash 是普通用户的标准shell。这个shell因此称为Bourne shell的超集,一套附件和插件。意味着bash和sh是兼容的:在sh中可以工作的命令,在bash中也能工作,反之则不然。本书所有的例子和练习均使用bash

  • csh[C shell]

    语法了类似于C语言,某些时候程序员会使用。

  • tcsh[Turbo C shell]

    普通C shell的超集,加强了的用户友好度和速度。

  • ksh[Korn shell]

    某些时候被有UNIX背景的人所赏识。Bourne shell的一个超集,有着对初学者来说就是一场恶梦的标准配置。

Linux系统上所有的已知shell

  • cat /etc/shells

    /bin/bash

    /bin/sh

    /bin/tcsh

    /bin/csh

* 默认的shell设置在 /etc/passwd 文件中,要从一个shell转换到另外一个,只要在活动的终端里输入新shell的的名字。