了解常用shell的编程特点,掌握shell程序设计的基础知识。对shell程序流程控制、shell程序运行方式、BASH程序的调试方法及BASH的常用内部命令又进一步的认识和理解。通过本实验,应基本掌握编写shell程序的步骤、方法和技巧
上传时间: 2014-01-11
上传用户:515414293
本文将较为详细地介绍 Linux 下最常用的 shell,BASH。BASH(Bourne Again Shell) 是 Linux 的缺省 shell,并被大多数用户所使用,在本文中你将学会:
上传时间: 2016-04-08
上传用户:ippler8
BASH_Beginners_Guide_CHS.pdf,学习linux下BASH shell编程的好工具!
上传时间: 2016-05-13
上传用户:515414293
uCOSII只提供了操作系统内核,用户要自己添加文件处理、人机界面、网络接口等重要部分。其中Shell(人机界面)提供了人与机器交互的界面,是机器服务于人的体现,是系统必不可少的重要组成部分。现代的很多OS如UNIX、DOS、VxWorks都提供了友好的命令行界面。Windows更是提供了GUI。大部分人认识OS都是从这里开始的。 由于Skyeye下的仿真串口USART已经实现了中断方式的接收(实际是从键盘接收输入),而且串口输出(实际上是输出到终端屏幕)也已经实现,所以实现一个类似DOS或BASH的简化版Shell并不困难。其本质思想就是:Shell作为一个uC/OSII下的任务,接收用户输入的字符,存储到缓冲区,并回显在屏幕上,以回车键为用户输入的结束信号,随后解析用户输入的命令名称、参数,调用相应的命令函数。一直到这个命令函数运行返回,才继续Shell的人机交互界面。Shell作为一个任务工作于内核之外,占用一个任务号。
上传时间: 2014-01-22
上传用户:xc216
这是一本实用的指南,并不十分的严肃,尝试用实际的东西来代替那些理论的例子。我分部分来写因为我对那些知道自己在谈论什么人写的脱离实际的和过分单纯的例子并不感到兴奋,展示一些比较酷的BASH的特性,
标签:
上传时间: 2014-12-07
上传用户:rishian
无论你是新手还是老手,或是使用其他语言的程序员,我能肯定你能在此书用受益。而本书除了介绍BASH的知识之外,也有许多有用的关于Linux/UNIX的知识和其他shell的介绍。
标签:
上传时间: 2017-04-16
上传用户:aysyzxzm
ccache 是一个快速的编译器缓存。当您编译一个程序的时候,它会缓存中间的结果。这样,不论什么时候您重新编译同一个程序,编译所需要得时间将被大大缩短。对于普通的编译来说,这可以提高编译速度5到10倍。 这个想法,来自 Erik Thiele 用BASH写的 compilercache 。只不过,ccache用C再实现了一遍。但比前者性能高许多,也有更多的特性。 (注:Linux下运行)
上传时间: 2017-05-01
上传用户:gxmm
用纯C语言编写的一个Linux下的Shell,包含tch和BASH的基本功能(包含重定向和后台运行),暂时不支持管道。已经在cygwin和Ubantu 7.10下测试通过。 主要包含: makefile 编译生成myshell可执行文件 myshell.c 主函数(涉及程序入口) utility.c 所有功能函数(将近1000行) myshell.h(包含宏定义、结构体声明、库函数的头文件,及utility.c中的所有函数的声明) readme 用户手册(当用户在myshell里输入help <command> 时,输出<command>的使用说明)
上传时间: 2014-02-05
上传用户:xymbian
The many variants of the Unix operating system require use of a mode of thought that s significantly different from the one that s required by simpler operating systems. Think Unix introduces readers to important fundamental and intermediate Unix commands and, in the process, inculcates them in the Unix way of thinking. It s a worthy goal in a world with more Linux users than ever, and author Jon Lasser accomplishes it. He s both a capable writer and a knowledgeable user of Unix shell commands. Lasser uses BASH under Red Hat Linux in most examples--which usually apply equally well to other Unix variants--and makes asides about other shells and environments, as needed.
标签: significantly operating variants of
上传时间: 2017-09-04
上传用户:qq521
并不是每个人都需要编译固件,笔者更推荐你直接使用官方固件,如果需要相应的软件,可以直接通过opkg 安装。为满足更多人需求,这里提供一个傻瓜教程,照着走一次,就编译好了,转的别问我为什么⋯⋯⋯⋯1.根据你的系统安装相应的包,把以下命令复制粘贴运行一次就行。Ubuntu 32bitsudo apt-get install build-essential subversion git-core libncurses5-dev zlib1g-dev gawkflex quilt libssl-dev xsltproc libxml-parser-perl mercurial bzr ecj cvs unzipUbuntu 64bitsudo apt-get install build-essential subversion libncurses5-dev zlib1g-dev gawk gccmultilibflex git-core gettextArch Linuxpacman -S --needed subversion asciidoc BASH bc binutils bzip2 fastjar flex git gcc util-linuxgawk intltool zlib make cdrkit ncurses openssl patch perl-extutils-makemaker rsync sdcc unzipwget gettext libxslt boost libusb bin86 sharutils b43-fwcutter findutilsDebian 6 Squeezeapt-get install libncurses5-dev zlib1g-dev gawk flex libssl-dev sdcc-nfDebian 7 Wheezy
上传时间: 2022-06-23
上传用户:bluedrops