第 4 章 Linux shell 程序设计 shell UNIX/Linux Linux shell shell if case while for shell Linux Linux 本章主要介绍 Linux shell( 默认是 bash) 的语法结构 变量定义及赋值引用 标点符号 控制语句等

Size: px
Start display at page:

Download "第 4 章 Linux shell 程序设计 shell UNIX/Linux Linux shell shell if case while for shell Linux Linux 本章主要介绍 Linux shell( 默认是 bash) 的语法结构 变量定义及赋值引用 标点符号 控制语句等"

Transcription

1 第 4 章 Linux shell 程序设计 shell UNIX/Linux Linux shell shell if case while for shell Linux Linux 本章主要介绍 Linux shell( 默认是 bash) 的语法结构 变量定义及赋值引用 标点符号 控制语句等 本章的主要内容如下 : shell 的主要特点 类型 建立和执行方式 bash 变量的分类 定义形式及引用规则 各种控制语句的格式 功能及流程 bash 中算术运算的使用 bash 函数的构成及使用规则 bash 中的内置命令 4.1 shell 概述 shell UNIX UNIX shell Linux UNIX shell bash shell 的特点和主要版本 1.shell 的特点 UNIX shell shell shell *? [ ] shell shell cd echo exit pwd kill shell / I/O &

2 86 Linux 教程 ( 第 4 版 ) shell shell shell UNIX shell shell 2.shell 的种类 Linux shell Bourne shell sh C shell csh Korn shell ksh Bourne Again shell bash 1 Bourne shell AT&T Bell Steven Bourne AT&T UNIX UNIX shell shell Bourne shell shell 2 C shell Bill Joy BSD UNIX sh C Bourne shell C shell Bourne shell 3 Korn shell AT&T Bell David Korn C shell Bourne shell Bourne shell Korn shell 4 Bourne Again shell bash GNU shell Linux shell bash Bourne shell C shell Korn shell 1 2 vi 3 4 Linux shell ash zsh shell bash 简单 shell 程序示例 shell $ ls -l / usr / meng shell shell shell Script shell 例 4.1 shell ex1 $ cat ex1 date pwd cd.. shell

3 第 4 章 Linux shell 程序设计 87 例 4.2 shell ex2 $ cat ex2 #!/bin/bash # If no arguments, then listing the current directory. # Otherwise, listing each subdirectory. if test $# = 0 then ls. else for i do ls -l $i grep '^d' done fi #!/bin/bash bash bash # shell if else for shell 脚本的建立和执行 1.shell 脚本的建立 shell vi 2. 执行 shell 脚本的方式 shell shell shell $ bash < $ bash <ex1 shell ex1 shell shell bash $ bash $ bash ex2 /usr/meng /usr/zhang

4 88 Linux 教程 ( 第 4 版 ) shell shell. shell $. shell shell shell shell chmod $ chmod a+x ex2 shell ex2 PATH $ PATH=$PATH:.. ex2 $ ex2 shell shell shell shell shell shell /bin/usr/bin shell shell shell shell shell Mount shell shell 4.2 命令历史 bash /.bash_history History Substitution

5 第 4 章 Linux shell 程序设计 显示历史命令 history history [option] [arg ] history history $ history 81 alias 82 pwd 83 history 1 history history history history al al history Enter -a -n -r -w -c 执行历史命令 \ = (

6 90 Linux 教程 ( 第 4 版 ) 4.1 表 4.1 基本事件指定字格式及其意义!!!-1!n n!-n n!-1!!!string string!ca cat!?string? string!?hist? hist!# $ date :28:06 CST $ pwd /home/mengqc $ ls Desktop ex-1 ex-2 ex-3 ex90 exam15 exam19 m1 m2 myfile usr $ cat m1 echo Hello! $ history 1 date 2 pwd 3 ls 4 cat m1 5 history $!2 pwd 2 /home/mengqc $!c cat m1 echo Hello! $!?w? pwd /home/mengqc 配置历史命令环境 bash.bash_history HISTFILE $ HISTFILE="/home/mengqc/.myhistory" /home/mengqc/.myhistory

7 第 4 章 Linux shell 程序设计 HISTSIZE $ HISTSIZE=600 bash 600 HISTSIZE 4.3 名称补全 bash Linux Tab Linux Tab Enter Linux shell Esc shell Esc+? Tab 4.4 别名 定义别名 shell alias alias [name[=value]] name=value name value $ alias

8 92 Linux 教程 ( 第 4 版 ) alias..='cd..' alias cp='cp -i' = $ alias ll=' ls -l ' $ my=/home/mengqc my $ ll $my $my ll ls -l ll shell ll ll $my ls -l /home/mengqc shell $ alias ll=ls -l bash: alias: '-l' not found $ pwd /home/mengqc $ ll m1 -ln m2 ttt ll ls -l ls 取消别名 unalias name name $ unalias ll $ alias ll ll alias not found alias unalias unalias unalias a

9 第 4 章 Linux shell 程序设计 shell 特殊字符 shell * 通配符 1. 一般通配符 4 * 0 f* f fa f1 fa2 ffa.s f. / *file.profile.*file.profile /etc*.c /etc.c/etc/*.c? f? f1 fa fb f fabc f12 [] f [abcd] fa, fb, fc fd f1 fa1 fab - f [a-d] f [abcd] f [1-9] f [ ] * -a [ *? ] abc -a*abc-a? abc! [] f [!1-9].c f 1 9.c fa.c fb.c fm.c * /usr/meng/f?/* / usr/meng f chapter[0-9]* chapter 0 9 chapter chapter0 chapter1 chapter28 chapter 模式表达式 bash Bourne shell *? [ ] *() 0 file*(.c.o) file file.c file.o file.c.c file.o.o file.c.o file.o.c file.h file.s

10 94 Linux 教程 ( 第 4 版 ) +() file+(.c.o) file.c file.o file.c.o file.c.c file?() 0 1 file?(.c.o) file file.c file.o file. c. c file. c. file@(.c.o) file.c file.o file file.c.c file.c.o!() file*(.[cho].sh) * 引号 shell 1. 双引号 $ `\ $ $ /home/mengqc $my ` \$` "\ \ shell 例 4.3 $ cat ex3 echo "current directory is ` pwd ` " echo "home directory is $HOME" echo "file*.?" echo "directory '$HOME ' " $ ex3 current directory is /home/mengqc/prog home directory is /home/mengqc file*.? directory '/home/mengqc' ex3 echo `pwd` pwd `pwd` echo $HOME HOME $HOME echo echo '$HOME'

11 第 4 章 Linux shell 程序设计 95 $HOME HOME 2. 单引号 $ str=' echo "directory is $HOME" ' $ echo $str echo "directory is $HOME" echo "directory is $HOME " str echo $HOME $ echo 'The time is ` date `, the file is $HOME/abc ' The time is ` date `, the file is $HOME/abc echo 3. 倒引号 shell shell $ echo current directory is ` pwd ` current directory is /home/mengqc shell `pwd` pwd/home/mengqc `pwd` $ today=`date` $ echo Today is $today Today is :38:39 CST $ users=` who wc -l ` $ echo The number of users is $users The number of users is 5 \ $ Nuser=`echo The number of users is \` who wc -l \` ` $ echo $Nuser The number of users is 5 $ Nuser1=`echo The number of users is `who wc -l` ` 0

12 96 Linux 教程 ( 第 4 版 ) $ echo $Nuser1 \ echo "Filename is \"$HOME\"\$* " Filename is "/home/mengqc"$* \\ \ 输入 / 输出重定向符 shell stdin stdout stderr shell 1. 输入重定向符 < score C scanf() file1 score file1 score $ score < file1 shell shell cmds $ cat cmds echo your working directory is ` pwd ` echo your name is ` logname ` echo The time is ` date ` who $ bash < cmds shell cmds shell <

13 第 4 章 Linux shell 程序设计 输出重定向符 > $ who > abc who abc who abc who $ cat abc shell shell exp1 echo "The time is `date` " echo "Your name is `logname` " echo "Working directory is `pwd` " echo "It has `ls -l wc -l` files. " $ exp1 > tmp1 $ cat tmp1 The time is :56:22 CST Your name is mengqc Working directory is /home/mengqc It has 26 files. exp1 > I/O cat f1.c > /dev/lp0 f1.c 3. 输出附加定向符 >> $ ps -l >> psfile ps psfile cat psfile >>

14 98 Linux 教程 ( 第 4 版 ) 4. 即时文件定向符 here document << shell << mail $1 <<! Best wishes to you on your birthday.!!! <<!!!! % mail!!$1 $ wc -l < infile > outfile wc infile outfile 5. 与文件描述字有关的重定向 UNIX/Linux > 2>> $ gcc m1.c 2> errfile C m1.c errfile 2 2> >>

15 第 4 章 Linux shell 程序设计 99 command $>file command file command > file 2>& 1 2>& 1 2>& file file shell cmd 9 f1 $ cmd 9> f1 $cmd 3<& cmd 注释 管道线和后台命令 1. 注释 shell # 4.2 shell #!#! shell C shell #! /bin/csh bash #! /bin/bash shell 2. 管道线 UNIX/Linux ls -l $HOME wc -l grep tail sort wc ls grep m?.c wc -l m C 3. 后台命令

16 100 Linux 教程 ( 第 4 版 ) C C $ gcc m1.c& & shell shell CPU CPU 命令执行操作符 1. 顺序执行 pwd who wc -l cd /usr/bin pwd ; who wc -l ; cd /usr/bin 2. 逻辑与 && 1 && cp ex1 ex10 && rm ex1 ex1 ex10 ex1 0 0 && cmd1 && cmd2 && && cmdn 3. 逻辑或

17 第 4 章 Linux shell 程序设计 cat abc pwd abc && & 成组命令 shell {} ( ) 1.{ } 形式 {} $ { echo "User Report for ` date `. "; who ; } pr :59 Page 1 User Report for :59:26 CST mengqc : :27 mengqc pts/ :27 mengqc pts/ :27 {} echo who pr {} { } ; {} { echo "Report of users for ` date `. " echo echo "There are ` who wc -l ` users logged in. " echo who sort ; } pr {} 2.( ) 形式 (echo "Current directory is ` pwd `. " cd /home/mengqc ; ls -l ; cp m1 em1 && rm m1 cat em1) pr

18 102 Linux 教程 ( 第 4 版 ) ()() {} {} shell () shell () shell $ a="current value " ; export a export $ echo $a current value $ ( a="new value-1 " ; echo $a ) new value-1 $ echo $a current value $ { a="new value-2 " ; echo $a ; } new value-2 $ echo $a new value-2 $ pwd /home/mengqc $ (cd /bin ; pwd ) /bin $ pwd /home/mengqc $ { cd /bin ; pwd ; } /bin $ pwd /bin 4.6 shell 变量 shell shell C shell shell shell 用户定义的变量 1. 变量名 shell

投影片 1

投影片 1 類 Linux BASH shell (, VBird) 2008/03/29 Linux 1 Bash Shell 令 vi vim 料流 令 / 令 理 (job control) 例 2008/03/29 Linux 2 Bash shell 2008/03/29 Linux 3 什 Shell Shell shell 2008/03/29 Linux 4 什 Shell Linux shell

More information

ebook35-2

ebook35-2 2 2.1 Linux login Login: < > Password: < > Linux r o o t l o g o u t 2.2 Linux X Window Linux Linux Bourne ( b s h ) C ( c s h ) Korn ( k s h ) Bourne Steven Bourne UNIX Bourne bash Bourne C Bill Joy Bourne

More information

Microsoft Word - linux命令及建议.doc

Microsoft Word - linux命令及建议.doc Linux 操 作 系 统 命 令 集 1 基 本 命 令 查 看 系 统 信 息 : uname -a 修 改 密 码 : passwd 退 出 : logout(exit) 获 取 帮 助 : man commands 2 文 件 和 目 录 命 令 显 示 当 前 工 作 目 录 : pwd 改 变 所 在 目 录 : cd cd - 切 换 到 上 一 次 使 用 的 目 录 cd 切 换

More information

像 客 样 使 命令行 徐 东

像 客 样 使 命令行 徐 东 像 客 样 使 命令行 徐 东 1 1.1................................ 1 1.2................................. 3 1.3............................. 4 1.3.1 Linux............................ 5 1.3.2 macos............................

More information

第零章、為何要學作業系統

第零章、為何要學作業系統 Bash Shell script VBird 2008/03/11 1 什 Shell Shell 2008/03/11 2 什 Shell Shell Linux shell /etc/shells chsh l 行 shell program 不 shell shell Linux Solaris bash csh 2008/03/11 3 Bash bash *? [0-9] 0~ [^abc]

More information

本文由筱驀釹贡献

本文由筱驀釹贡献 本 文 由 筱 驀 釹 贡 献 ppt 文 档 可 能 在 WAP 端 浏 览 体 验 不 佳 建 议 您 优 先 选 择 TXT, 或 下 载 源 文 件 到 本 机 查 看 Linux 操 作 系 统 Linux 操 作 系 统 第 一 部 分 介 绍 与 安 装 Linux 的 由 来 : Linux 的 由 来 : 的 由 来 Linus Torvalds 1.Linux 的 版 本 1.Linux

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Linux 操 作 系 统 基 础 介 绍 课 程 目 标 及 要 求 了 解 Linux 操 作 系 统 的 登 入 方 式 掌 握 常 用 命 令 的 基 本 用 法 能 够 熟 练 在 各 个 目 录 转 换 Outline 1. Linux 操 作 系 统 简 介 2. Linux 操 作 系 统 的 登 录 3. Linux 操 作 系 统 的 目 录 结 构 4. 常 用 命 令 5.

More information

Linux操作系统使用

Linux操作系统使用 Linux vi shell Linux Linux Linux 5 UNIX time-stamp UNICS Sep 1969... UNIX Time- Sharing System First Edition(V1) Nov 3, 1971 FreeBSD 5.1 Jun 9,2003 BSD/OS 5.0 (BSDI) May 2,2003... V6 May 1976 BSD 1977...

More information

Shell

Shell Shell & shell script USING csh/tcsh FreeBSD 練 B 磊 callmelei Part 1 Shell ::Outline:: Shell 什 什 Shell shell shell Csh tcsh 不 C shell Shell 什??...NO??...YES -- getty --> login --> shell --> logout -- ^ ----------------------------------------------

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

untitled

untitled Unix Ka-Lok Ng () Department of Biological Sciences and Biotechnology() Taichung Healthcare and Management University (O) 04-23323456 x1856 3408 Teach the student how to use Linux system using TEXT mode

More information

ebook15-C

ebook15-C C 1 1.1 l s ( 1 ) - i i 4. 14 - d $ l s -ldi /etc/. /etc/.. - i i 3077 drwxr-sr-x 7 bin 2048 Aug 5 20:12 /etc/./ 2 drwxr-xr-x 13 root 512 Aug 5 20:11 /etc/../ $ls -ldi /. /..... i 2 2 drwxr-xr-x 13 root

More information

ebook70-22

ebook70-22 2 2 L i n u x f s t a b X 11 L i n u x L i n u x L i n u x D O S Wi n d o w s L i n u x O p e n L i n u x / u s r / m a n / m a n 5 f s t a b m o u n t m o u n t L i n u x 22.1 OpenLinux L i n u x U N

More information

292 shell shell C shell ~/.cshrc shell ~/.login ~/.logout ~/.history.cshrc shell shell /etc/passwd ~name NIS NIS+ * 0? [abc...] a-za-z0-9

292 shell shell C shell ~/.cshrc shell ~/.login ~/.logout ~/.history.cshrc shell shell /etc/passwd ~name NIS NIS+ * 0? [abc...] a-za-z0-9 C shell C shell C shell C shell C shell C shell Using csh & tcsh C shell 291 292 shell shell C shell ~/.cshrc shell ~/.login ~/.logout ~/.history.cshrc shell shell /etc/passwd ~name NIS NIS+ * 0? [abc...]

More information

lect03.ppt

lect03.ppt Linux 操 作 系 统 Linux 基 础 主 要 内 容 q 使 用 Linux q Linux 的 两 种 登 录 方 式 q 字 符 操 作 环 境 和 X Windows 系 统 q Linux 图 形 界 面 基 本 操 作 q Linux 命 令 的 使 用 方 式 q Linux 一 些 常 用 命 令 1 2 一 些 基 本 术 语 u 命 令 (Command) 给 计 算 机

More information

Unix®t Œ fi z.PDF

Unix®t Œ fi z.PDF 7 9 8 0 $ man umount newfs $ man -a intro $ man -a chown ORDER=C:ADM:ADMN:ADMP:PADM:F:HW 8 1 # catman % ps aux grep chavez chavez 8684 89.5 9.627680 5280? R N 85:26 /home/j90/l988 root 10008 10.0 0.8 1408

More information

2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD UNIX X/Open Company, Ltd. / SunSun MicrosystemsSun

2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD UNIX X/Open Company, Ltd. / SunSun MicrosystemsSun SAP livecache Sun Cluster Solaris OS SPARC Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 817 7374 10 2004 4 A 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA

More information

Bourne Shell及shell编程

Bourne Shell及shell编程 Bourne Shell shell Altmayer.bbs@altmayer.dhs.org javalee LINUX hbwork@dlut.edu.cn, April 1999. URL: ftp://ftp.dlut.edu.cn/pub/people/albin/ : ------------------------------------------------------------------------------

More information

ebook70-21

ebook70-21 2 1 2 2 2 3 2 4 2 1 s u O p e n L i n u x L i n u x s c h e d u l i n g L i n u x O p e n L i n u x O p e n L i n u x O p e n L i n u x 5 r m # rm -fr / * L i n u x r m Permission denied s u 21.1 su s

More information

Linux Ubuntu Part Linux Ubuntu Linux UNIX...19 Linux...19 Linux Linux...21 Linux GNU FSF Open So urce.

Linux Ubuntu Part Linux Ubuntu Linux UNIX...19 Linux...19 Linux Linux...21 Linux GNU FSF Open So urce. Linux Ubuntu 10.04 Part 1 17 1 Linux Ubuntu... 18 1-1 Linux... 19 UNIX...19 Linux...19 Linux...20...20 Linux...21 Linux...21 1-2 GNU FSF Open So urce...22 GNU...22 GPL...23...24 1-3 GNU/Linux V.S. Linux...25

More information

Linux服务器构建与运维管理

Linux服务器构建与运维管理 1 Linux 服务器构建与运维管理 第 2 章 :Linux 基本命令 阮晓龙 13938213680 / rxl@hactcm.edu.cn http://linux.xg.hactcm.edu.cn http://www.51xueweb.cn 河南中医药大学管理科学与工程学科 2018.3 2 提纲 目录与文件的操作 mkdir touch mv cp rm rmdir file tree

More information

腰部酸痛保健法

腰部酸痛保健法 識 臨 都 老 年 勞 不 不 理 不 便 了 療 離 狀 力 力 易 拉 狀 勞 裂 類 老 年 刺 滑 不 良 六 尿 列 類 說 裂 神 神 見 勞 滑 不 烈 兩 來 暴 力 勞 裂 刺 神 神 狀 見 勞 見 臨 度 降 年 連 都 類 淋 刺 刺 不 勞 易 老 不 不 若 神 神 行 力 不 良 了 不 良 立 年 女 老 年 度 度 度 勞 見 老

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 177 [P179] (1) - [P181] [P182] (2) - for [P183] (3) - switch [P184] [P187] [P189] [P194] 178 [ ]; : : int var; : int var[3]; var 2293620 var[0] var[1] 2293620

More information

Cygwin & vim

Cygwin & vim Cygwin & vim Yu Hsiang Zheng (Slighten) Outline Shell Cygwin vim 1/21 What is a computer 2/21 What is a computer 拿 地 球 來 做 比 喻 的 話 kernel: 地 心 shell: 地 殼 application: 房 子 各 種 建 築 物 shell = command interpreter

More information

ebook70-11

ebook70-11 11 L i n u x p i n e M e s s e n g e r P P P I S 11.1 s e n d m a i l U N I X O p e n L i n u x U N I X O p e n L i n u x O p e n L i n u x s e n d m a i l O p e n L i n u x ( 11-1 ) 11-1 O p e n L i n

More information

Microsoft Word - 第5章.doc

Microsoft Word - 第5章.doc 目 录 及 权 限 管 理 随 着 的 不 断 发 展, 越 来 越 多 的 人 开 始 使 用, 对 于 那 些 刚 接 触 的 人 来 说, 恐 怕 最 先 感 到 困 惑 的 就 是 那 些 不 明 不 白 的 目 录 了 同 样, 系 统 是 一 个 典 型 的 多 用 户 系 统 为 了 保 护 系 统 的 安 全 性, 系 统 对 不 同 用 户 访 问 同 一 文 件 或 目 录 的

More information

ebook70-5

ebook70-5 5 / 5.1 L i n u x L i n u x X L i n u x 5.1.1 touch t o u c h t o u c h G N U t o u c h # touch newfile # ls -l newfile - r w - r - - r - - 1 bball users 0 Jan 5 12 : 40 n e w f i l e t o u c h 0 # > newfile2

More information

ebook8-30

ebook8-30 3 0 C C C C C C++ C + + C++ GNU C/C++ GNU egcs UNIX shell s h e l l g a w k P e r l U N I X I / O UNIX shell awk P e r l U N I X C C C C C C U N I X 30.1 C C U N I X 70 C C U N I X U N I X U N I X C Dennis

More information

ebook62-1

ebook62-1 1 Red Hat Linux R e d Hat Linux L i n u x X Wi n d o w Red Hat L i n u x 1.1 Red Hat Linux Red Hat 16 M 120 M 3. 5 Intel 386 C D - R O M C D - R O M We b / 1.1.1 L i n u x L i n u 4 Primary Partition Extended

More information

linux_for_campus

linux_for_campus About GNU/Linux 旅游度假事业部 王冬 (dong.wang) GNU Gnu s not unix GNU system Richard Stallman Linux Kernel [ li:nэks] 哩呐科思林呐科思 Linus Torvalds GNU/Linux Free = Freedom Free software is a matter of the users' freedom

More information

Linux 操作系统课程社区创作

Linux 操作系统课程社区创作 学 号 14284060xx 等 第 苏 州 大 学 实 验 报 告 Linux 操 作 系 统 课 程 社 区 创 作 院 ( 系 ) 名 称 : 电 子 信 息 学 院 专 业 名 称 : 14 通 信 工 程 ( 嵌 入 式 培 养 ) 学 生 姓 名 : 某 某 某 课 程 名 称 : Linux 操 作 系 统 2015-2016 学 年 第 一 学 期 1 摘 要 这 是 摘 要 主 要

More information

2005 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD UNIX X/Open Company, Ltd. / Sun Sun Microsystems Su

2005 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD UNIX X/Open Company, Ltd. / Sun Sun Microsystems Su Java Desktop System Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 819 0675 10 2005 2 2005 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. Sun Sun Berkeley

More information

Sun Fire V440 Server Administration Guide - zh_TW

Sun Fire V440 Server Administration Guide - zh_TW Sun Fire V440 Server 管 理 指 南 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. 650-960-1300 文 件 號 碼 :817-2818-10 2003 年 7 月, 修 訂 版 A 將 您 對 此 文 件 的 意 見 傳 送 到 :http://www.sun.com/hwdocs/feedback

More information

华恒家庭网关方案

华恒家庭网关方案 LINUX V1.5 1 2 1 2 LINUX WINDOWS PC VC LINUX WINDOWS LINUX 90% GUI LINUX C 3 REDHAT 9 LINUX PC TFTP/NFS http://www.hhcn.com/chinese/embedlinux-res.html minicom NFS mount C HHARM9-EDU 1 LINUX HHARM9-EDU

More information

C/C++ - 文件IO

C/C++ - 文件IO C/C++ IO Table of contents 1. 2. 3. 4. 1 C ASCII ASCII ASCII 2 10000 00100111 00010000 31H, 30H, 30H, 30H, 30H 1, 0, 0, 0, 0 ASCII 3 4 5 UNIX ANSI C 5 FILE FILE 6 stdio.h typedef struct { int level ;

More information

untitled

untitled 錄 行 令 X Window 切 /etc/inittab, X Window GNOME 例, X Window, 滑, 行 令, X Window X Window 了 滑,, 行 / 令, 來 切 切 Linux (console) 了 7, 行 X Window, 來切, 切 Linux X Window,,, 滑, 不,,,, /etc/inittab, "id:5:initdefault:",

More information

Solaris ( ) Solaris Shell awk gawk vi emacs OK mode 1

Solaris ( ) Solaris Shell awk gawk vi emacs OK mode 1 Solaris Shell awk gawk vi emacs OK mode 1 tty: return user's terminal name, ex: tty. echo: echo arguments, ex: echo "$USER's current directory is $PWD\c". who: who is on the system, ex: who. whoami: display

More information

山东2014第四季新教材《会计基础》冲刺卷第二套

山东2014第四季新教材《会计基础》冲刺卷第二套 2016 年 会 计 从 业 考 试 会 计 基 础 冲 刺 卷 2 一 单 项 选 择 题 ( 本 题 共 20 小 题, 每 小 题 1 分, 共 20 分 在 下 列 每 小 题 的 备 选 项 中, 有 且 只 有 一 个 选 项 是 最 符 合 题 目 要 求 的, 请 将 正 确 答 案 前 的 英 文 字 母 填 入 题 后 的 括 号 内, 不 选 错 选 均 不 得 分 ) 1.

More information

mannal

mannal 高 性 能 集 群 计 算 机 使 用 说 明 书 版 本 1.0.8 高 性 能 计 算 研 究 组 编 2008 年 3 月 12 日 第 1 页 共 30 页 高 性 能 集 群 计 算 机... 1 使 用 说 明 书... 1 高 性 能 计 算 集 群 使 用 说 明... 3 1. 集 群 系 统 概 述... 3 2. 使 用 方 法... 5 1. 登 录 方 法... 5 2.MPI

More information

序 文 藝 社 (Society of Chinese Literature) 在 去 年 暑 假 開 始 籌 措 成 立, 二 零 一 三 年 九 月 正 式 展 開 所 有 活 動 文 藝 社 成 立 的 目 的 旨 在 讓 學 生 學 習 欣 賞 歷 代 名 篇 名 作, 其 中 以 古 典

序 文 藝 社 (Society of Chinese Literature) 在 去 年 暑 假 開 始 籌 措 成 立, 二 零 一 三 年 九 月 正 式 展 開 所 有 活 動 文 藝 社 成 立 的 目 的 旨 在 讓 學 生 學 習 欣 賞 歷 代 名 篇 名 作, 其 中 以 古 典 序 文 藝 社 (Society of Chinese Literature) 在 去 年 暑 假 開 始 籌 措 成 立, 二 零 一 三 年 九 月 正 式 展 開 所 有 活 動 文 藝 社 成 立 的 目 的 旨 在 讓 學 生 學 習 欣 賞 歷 代 名 篇 名 作, 其 中 以 古 典 散 文 為 主 ; 開 拓 學 生 的 文 藝 視 角 和 創 作 平 台 ; 強 化 對 外 的 創

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force Steven Shiau steven@nchc.gov.tw National Center for High-Performance Computing Sep 10, 2002 1 Outline 1. 2. 3. Service DHCP, TFTP, NFS, NIS 4. 5. 2 DRBL (diskless remote boot

More information

ebook 99-1

ebook 99-1 s h e l l 1 setuid chown c h g r p umask ( ) 1) 2) 3) s h e l l 1) 2) 3) 1.1 i ls -l 2 shell total 4232 - r w x r- x r- x 9 9 r w x r- x r- x r w x 1 root root r o o t ( r o o t ) 3578 K Oct 14 04:44 dmesg

More information

2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD University of California UNIX X/Open Company, Ltd.

2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD University of California UNIX X/Open Company, Ltd. Java Desktop System 2 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 817 7758 10 2004 9 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. Sun Sun

More information

Microsoft PowerPoint - 第7章 Linux基本命令

Microsoft PowerPoint - 第7章  Linux基本命令 第 2 部 分 操 作 系 统 命 令 及 shell 编 程 第 7 章 Linux 基 本 命 令 7.1 Linux 的 登 录 和 退 出 7.2 文 件 命 令 7.3 目 录 和 层 次 命 令 7.4 查 找 命 令 7.5 目 录 和 文 件 安 全 性 7.6 磁 盘 存 储 命 令 7.7 进 程 命 令 7.8 联 机 帮 助 命 令 7.9 小 结 习 题 本 章 介 绍 Linux

More information

epub 73-5

epub 73-5 5 L i n u x I D User ID U I D I D Group ID G I D U I D G I D set -UID Windows NT L i n u x L i n u x U I D Wi n d o w s S I D Windows NT L i n u x N T A d m i n i s t r a t o r L i n u x L i n u x Access

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

CCNA 3 Module 5 Switching Concepts

CCNA 3 Module 5  Switching Concepts 單 元 三 Linux 帳 號 與 群 組 管 理 1 Linux 的 帳 號 與 用 戶 組 Linux 屬 於 多 人 多 工 的 作 業 系 統, 可 讓 不 同 的 用 戶 從 本 地 端 登 入 在 網 路 上 則 允 許 使 用 者 利 用 telnet ssh 等 方 式 從 遠 端 登 入 無 論 是 從 本 機 或 由 遠 端 登 入, 使 用 者 都 必 須 在 該 台 主 機

More information

Sun StorEdge 3000 系列安装、操作和维护手册 (3310)

Sun StorEdge 3000 系列安装、操作和维护手册 (3310) Sun StorEdge 3000 系 列 安 装 操 作 和 维 护 手 册 Sun StorEdge 3310 SCSI 阵 列 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. 650-960-1300 部 件 号 816-7960-11 2003 年 6 月, 修 订 版 A 有 关 本 文 档 的

More information

Microsoft Word - 第5-7章

Microsoft Word - 第5-7章 3 5 1 2 239 1. 1 2 3 2. 1 2 7 1 1 2 3 4 5 A. B. C. D. ABC 2012 240 A. B. C. D. D D 1 7 2 2012 3 10 2 000 100 1 21 000 000 21 000 000 2 21 000 000 21 000 000 2 7 3 A 2012 1 1 1 2012 12 31 600 3 000 4 000

More information

2005 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD UNIX X/Open Company, Ltd. / Sun Sun Microsystems Su

2005 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A. Sun Sun Berkeley BSD UNIX X/Open Company, Ltd. / Sun Sun Microsystems Su Linux Java Desktop System 3 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. 819 1515 10 2005 8 2005 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. Sun

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL c00hkl00@nchc.gov.tw, steven@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Dec, 2002 1 Outline 1. 2. DRBL 3. 4. Service DHCP, TFTP, NFS,

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

Progperl.PDF

Progperl.PDF print "Howdy, world!\n"; 1 2 / / 3 4 / $phrase = " Howdy, world!\n"; print $phrase ; # # / 5 6 / $answer = 42; $pi = 3.14159265; $avocados = 6.02e23; $pet = "Camel"; $sign = "I love my $pet"; $cost = 'It

More information

jsj0.nps

jsj0.nps 第 3 章 Word 基 础 应 用 制 作 求 职 简 历 3 畅 1 求 职 简 历 案 例 分 析 本 章 以 制 作 求 职 简 历 为 例, 介 绍 Word 强 有 力 的 文 字 处 理 功 能, 包 括 Word 的 字 符 格 式 的 设 置 段 落 格 式 的 设 置 表 格 的 制 作 图 片 的 插 入 制 表 位 的 使 用 页 面 边 框 的 设 置 打 印 输 出 等

More information

Linux 目 录 结 构 与 Windows 将 硬 盘 看 做 C 盘 D 盘 几 个 独 立 的 分 区 不 同,Linux 将 整 个 文 件 系 统 看 做 一 棵 树, 这 棵 树 的 树 根 叫 做 根 目 录, 用 / 表 示 各 个 分 区 通 过 挂 载 (mount) 到 文

Linux 目 录 结 构 与 Windows 将 硬 盘 看 做 C 盘 D 盘 几 个 独 立 的 分 区 不 同,Linux 将 整 个 文 件 系 统 看 做 一 棵 树, 这 棵 树 的 树 根 叫 做 根 目 录, 用 / 表 示 各 个 分 区 通 过 挂 载 (mount) 到 文 Linux 文 件 和 目 录 管 理 创 达 IT 实 战 技 能 培 训 机 构 目 录 Linux 目 录 结 构... 1 根 目 录 结 构... 1 相 对 路 径 和 绝 对 路 径... 2 Linux 环 境 变 量... 2 环 境 变 量 的 分 类... 2 设 置 一 个 新 的 环 境 变 量... 3 查 看 环 境 变 量... 3 常 见 的 环 境 变 量...

More information

前 言 首 先, 感 謝 你 購 買 了 Linux LPIC Level I + Novell CLA 11 這 本 書, 這 本 書 是 全 球 第 一 本 以 Novell SUSE Linux Enterprise Server 來 分 析 兩 大 Linux 認 證 的 自 學 手 冊 目 前 訪 間 充 斥 著 許 多 Linux 作 業 系 統 的 教 學 手 冊 考 照 的 書 籍,

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

内容目录 Linux Mint 简介...3 历史...3 特点...3 版本号和开发代号...3 如何获取帮助...4 安装 Linux Mint...4 下载 iso 文件...4 校验 MD5 值...4 刻录 iso 文件...5 引导 Mint 启动...5 安装 Mint...5 Min

内容目录 Linux Mint 简介...3 历史...3 特点...3 版本号和开发代号...3 如何获取帮助...4 安装 Linux Mint...4 下载 iso 文件...4 校验 MD5 值...4 刻录 iso 文件...5 引导 Mint 启动...5 安装 Mint...5 Min 官方 用户指南 Linux Mint 16 Cinnamon 版 编者 johiten 1 内容目录 Linux Mint 简介...3 历史...3 特点...3 版本号和开发代号...3 如何获取帮助...4 安装 Linux Mint...4 下载 iso 文件...4 校验 MD5 值...4 刻录 iso 文件...5 引导 Mint 启动...5 安装 Mint...5 Mint 桌面简介...8

More information

中兴Embsys CGS Linux V3.0用户使用手册

中兴Embsys CGS Linux V3.0用户使用手册 NewStart Desktop Linux 用 户 使 用 手 册 V1.0 2016-01-01 广 东 中 兴 新 支 点 技 术 有 限 公 司 Guangdong ZTE NewStart Technology Co.,Ltd. 广 东 中 兴 新 支 点 技 术 有 限 公 司 版 权 所 有 NewStart Desktop Linux 用 户 使 用 手 册 V1.0 概 述 本 手

More information

Microsoft Word - 武術-定稿.doc

Microsoft Word - 武術-定稿.doc 目 錄 第 一 章 緒 論 1 1-1 計 畫 緣 起 與 目 的 1 1-2 計 畫 團 隊 組 織 架 構 2 第 二 章 工 作 執 行 概 況 3 2-1 工 作 內 容 3 2-2 研 究 流 程 4 2-3 研 究 方 法 5 2-4 計 畫 執 行 時 程 表 6 第 三 章 文 獻 回 顧 7 3-1 文 獻 探 討 與 分 析 8 3-2 小 結 11 第 四 章 田 野 調 查

More information

数据结构与算法 - Python基础

数据结构与算法 - Python基础 Python 教材及课件 课件及作业见网址 xpzhang.me 1 1. Python 2. 3. (list) (tuple) 4. (dict) (set) 5. 6. 7. 2 Python Python 3 Python 4 Python 1, 100, -8080, 0,... 0x 0-9, a-f 0 xff00, 0 xa432bf 5 1.24, 3.14, -9.80,...

More information

060522達文西密碼_全_.PDF

060522達文西密碼_全_.PDF Date: May-22-2006 Page 1 Date: May-22-2006 Page 2 Date: May-22-2006 Page 3 Date: May-22-2006 Page 4 Date: May-22-2006 Page 5 Date: May-22-2006 Page 6 Date: May-22-2006 Page 7 Date: May-22-2006 Page 8 Date:

More information

投影片 1

投影片 1 類 Linux (, VBird) 2008/03/28 Linux 1 Linux man page / 流 例 2008/03/28 Linux 2 Linux 2008/03/28 Linux 3 Linux CPU RAM 路 2008/03/28 Linux 4 Linux Linux 2008/03/28 Linux 5 Linux (sector) 理 量 512bytes (cylinder)

More information

Java Desktop System 呂衄盋 2 呂衄说柔

Java Desktop System 呂衄盋 2 呂衄说柔 Java Desktop System 2 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 817 7767 10 2004 10 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A. Sun Sun

More information

Spyder Anaconda Spyder Python Spyder Python Spyder Spyder Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Sp

Spyder Anaconda Spyder Python Spyder Python Spyder Spyder Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Sp 01 1.6 Spyder Anaconda Spyder Python Spyder Python Spyder Spyder 1.6.1 Spyder 開始 \ 所有程式 \ Anaconda3 (64-bit) \ Spyder Spyder IPython Python IPython Spyder Python File

More information

WWW PHP

WWW PHP WWW PHP 2003 1 2 function function_name (parameter 1, parameter 2, parameter n ) statement list function_name sin, Sin, SIN parameter 1, parameter 2, parameter n 0 1 1 PHP HTML 3 function strcat ($left,

More information

Red Flag Linux Desktop 4.0 Red Flag Linux Desktop 4.0 1

Red Flag Linux Desktop 4.0 Red Flag Linux Desktop 4.0 1 Red Flag Linux Desktop 4.0 68 6 Red Flag Software Co., Ltd. http://www.redflag-linux.com Red Flag Linux Desktop 4.0 Red Flag Linux Desktop 4.0 1 1 Red Flag Linux Desktop 4.0 1.1 Red Flag Linux Desktop

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

C/C++ - 字符串与字符串函数

C/C++ - 字符串与字符串函数 C/C++ Table of contents 1. 2. 3. 4. 1 char C 2 char greeting [50] = " How " " are " " you?"; char greeting [50] = " How are you?"; 3 printf ("\" Ready, go!\" exclaimed John."); " Ready, go!" exclaimed

More information

1

1 1 2 3 4 5 GNUDebugger 6 7 void main(int argc, char **argv){ vulncpy(argv[1]); return; } void vulncpy(char *a){ char buf[30]; strcpy(buf, a); return; } *argv[1] buf Shellcode *argv[1]... &buf &buf 8 strcpy

More information

Ps22Pdf

Ps22Pdf ,?,?,,?,, 200,,,,,,,, 8, : ; ; (CIP). :,2004.6 ISBN 7-04 - 014896 - X......... - -.G634.343 CIP( 2004 ) 044173 010-64054588 4 800-810 - 0598 100011 010-82028899 http: www.hep.edu.cn http: www.hep.com.cn

More information

ebook70-14

ebook70-14 Linux 1 4 1 5 1 6 1 7 1 8 1 9 S t a r O ff i c e 2 0 L i n u x 1 4 O p e n L i n u x O p e n L i n u x C D - R O M O p e n L i n u x C o r e l WordPerfect 8 for Linux S t a r D i v i s i o n S t a r O

More information

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2

WWW PHP Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 WWW PHP 2003 1 Comments Literals Identifiers Keywords Variables Constants Data Types Operators & Expressions 2 Comments PHP Shell Style: # C++ Style: // C Style: /* */ $value = $p * exp($r * $t); # $value

More information

给初学者的入门知识 1. 建立和运行 shell 程序什么是 shell 程序呢? 简单的说 shell 程序就是一个包含若干行 shell 或者 linux 命令的文件. 象编写高级语言的程序一样, 编写一个 shell 程序需要一个文本编辑器. 如 VI 等. 在文本编辑环境下, 依据 shel

给初学者的入门知识 1. 建立和运行 shell 程序什么是 shell 程序呢? 简单的说 shell 程序就是一个包含若干行 shell 或者 linux 命令的文件. 象编写高级语言的程序一样, 编写一个 shell 程序需要一个文本编辑器. 如 VI 等. 在文本编辑环境下, 依据 shel 给初学者的入门知识 1. 建立和运行 shell 程序什么是 shell 程序呢? 简单的说 shell 程序就是一个包含若干行 shell 或者 linux 命令的文件. 象编写高级语言的程序一样, 编写一个 shell 程序需要一个文本编辑器. 如 VI 等. 在文本编辑环境下, 依据 shell 的语法规则, 输入一些 shell/linux 命令行, 形成一个完整的程序文件. 执行 shell

More information

《计算机导论》实验教学大纲

《计算机导论》实验教学大纲 计 算 机 科 学 与 技 术 专 业 实 验 教 学 大 纲 福 建 师 范 大 学 数 学 与 计 算 机 科 学 学 院 2012 年 6 月 目 录 1. 计 算 机 导 论 教 学 大 纲... 3 2. 高 级 语 言 程 序 设 计 教 学 大 纲...5 3. 数 据 结 构 教 学 大 纲... 8 4. 算 法 设 计 与 分 析 ( 计 本 ) 教 学 大 纲...10 5.

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

第5章修改稿

第5章修改稿 (Programming Language), ok,, if then else,(), ()() 5.0 5.0.0, (Variable Declaration) var x : T x, T, x,,,, var x : T P = x, x' : T P P, () var x:t P,,, yz, var x : int x:=2. y := x+z = x, x' : int x' =2

More information

epub 63-3

epub 63-3 3 Solaris S o l a r i s S o l a r i s 2 S o l a r i s s h e l l p a s s w d v i l s c a t p g m o r e r m 3.1 3.1.1 c p c p c o p y c p c p cp source-file destination-file s o u r c e - f i l e c p d e

More information

Untitled

Untitled shell script shell bash if OS X BSD Linux tcsh zsh bash bash Unix bash OS X bash 0-1 Linux gnome KDE konsole bash Unix bash 0-1 OS X bash 2 Chapter 0 # # checkforcmdinpath / echo /bin/ echo) 1 ${var:0:1}

More information

05_資源分享-NFS及NIS.doc

05_資源分享-NFS及NIS.doc 5 NFS NFS Server NFS Client NIS NIS 5-0 (Network File System, NFS) Unix NFS mount NFS... Network Information Service NIS Linux NIS NIS NIS / / /etc/passwd /etc/group NFS NIS 5-1 NFS 5-1-1 NFS NFS Network

More information

Microsoft Word - 2AF63內文.doc

Microsoft Word - 2AF63內文.doc 一 準 備 方 式 刑 法 一 科 不 管 在 哪 一 種 考 試 類 科, 都 是 令 考 生 覺 得 相 當 頭 痛 的 科 目, 最 主 要 的 原 因 在 於 刑 法 的 理 論 繁 多, 且 極 端 抽 象, 再 加 以 法 條 用 語 及 一 般 書 本 內 容 在 用 語 上 的 艱 澀, 使 得 考 生 很 不 易 入 門 所 以 為 了 能 在 極 短 的 時 間 達 成 最 大

More information

考 試 日 期 :2016/04/24 教 室 名 稱 :602 電 腦 教 室 考 試 時 間 :09:50 25 26 27 28 29 30 31 32 33 34 35 36 二 技 企 管 一 胡 宗 兒 中 文 輸 入 四 技 企 四 甲 林 姿 瑄 中 文 輸 入 二 技 企 管 一

考 試 日 期 :2016/04/24 教 室 名 稱 :602 電 腦 教 室 考 試 時 間 :09:50 25 26 27 28 29 30 31 32 33 34 35 36 二 技 企 管 一 胡 宗 兒 中 文 輸 入 四 技 企 四 甲 林 姿 瑄 中 文 輸 入 二 技 企 管 一 考 試 日 期 :2016/04/24 教 室 名 稱 :602 電 腦 教 室 考 試 時 間 :09:50 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 五 專 企 二 乙 胡 哲 維 中 文 輸 入 五 專 企 二 乙 周 林 昜 中 文 輸 入 五 專 企 二 乙 賴 昱 樺 中 文 輸 入 五 專 企 二 乙

More information

93年各縣國中教師甄試最新考情.doc

93年各縣國中教師甄試最新考情.doc 93 7/8()~7/13() 7/11()~7/13() 7/17() 7/18() 7/18() 7/19() 7/21() 40% 20%( ( )) 20%( ) 1 35% 25% ( ) 70% 10%( ) 60% 1 20% 10% ( ) 6/1()~6/11() 6/12()~6/14() 6/19() 6/21() 6/26() 6/26()22:00 7/3() 40%( )

More information

<4D6963726F736F667420576F7264202D20AC4FBDBDA4FBB67DA96CAABA2DA743A67EAFC5AAA95FA7B9BD5A5F2E646F63>

<4D6963726F736F667420576F7264202D20AC4FBDBDA4FBB67DA96CAABA2DA743A67EAFC5AAA95FA7B9BD5A5F2E646F63> ( 閱 讀 前 ) 練 習 一 動 動 腦, 猜 一 猜 小 朋 友, 現 在 我 們 要 一 起 來 閱 讀 一 本 很 有 趣 的 書, 書 名 是 是 蝸 牛 開 始 的!, 請 動 動 你 的 腦 袋, 想 像 自 己 是 作 者, 猜 猜 這 本 書 在 說 什 麼 樣 的 故 事 呢? 我 覺 得 這 個 故 事 可 能 的 角 色 有 我 覺 得 這 個 故 事 可 能 發 生 的 地

More information

PowerPoint 簡報

PowerPoint 簡報 國 家 賠 償 法 概 述 主 講 人 : 宋 恭 良 104.10.12 2015.10.30 1 Q. 老 師 是 否 是 公 務 員? 是 否 適 用 國 賠? 法 務 部 95 年 9 月 14 日 法 律 字 第 0170449 號 函 : 國 家 賠 償 法 第 2 條 第 1 項 規 定 本 法 所 稱 公 務 員 者, 謂 依 法 令 從 事 於 公 務 之 員, 係 採 最 廣 義

More information

第 零 場 (2005) 清 晨 天 未 亮 時, 喪 家 帆 布 棚 下 往 生 者 為 36 歲 王 宏 杰 冷 清 低 調 的 喪 禮 佈 置 孫 明 義 ( 男 36) 向 遺 孀 (34) 遞 上 奠 儀 王 妻 眼 神 空 洞, 臉 上 滿 滿 的 怨 恨 王 妻 用 極 低 的 音 量

第 零 場 (2005) 清 晨 天 未 亮 時, 喪 家 帆 布 棚 下 往 生 者 為 36 歲 王 宏 杰 冷 清 低 調 的 喪 禮 佈 置 孫 明 義 ( 男 36) 向 遺 孀 (34) 遞 上 奠 儀 王 妻 眼 神 空 洞, 臉 上 滿 滿 的 怨 恨 王 妻 用 極 低 的 音 量 第 五 屆 拍 台 北 電 影 劇 本 徵 選 非 突 發 事 件 劇 情 大 綱 : 以 台 灣 人 民 間 信 仰 的 眾 神 明 為 基 礎, 將 眾 神 明 的 勢 力 具 象 化 的 情 節 以 兩 名 主 角 的 遭 遇 為 主 線, 表 述 台 灣 人 對 善 惡 價 值 觀 人 際 交 往 的 種 種 態 勢 主 角 孫 明 義 經 歷 了 黑 幫 生 活 保 險 詐 欺, 在 與

More information

投影片 1

投影片 1 類 Linux 理 (, VBird) 2008/03/31 Linux 理 1 Linux 理 Linux (ILA) Linux 理 (ILB) Linux Linux (ILA) Linux 理 (ILB) Linux 路 (ILC) 2008/03/31 Linux 理 2 Linux 理 Linux 理 理 更 kernel boot loader LILO, grub 理 shell script

More information

, 即 使 是 在 昏 暗 的 灯 光 下, 她 仍 然 可 以 那 么 耀 眼 我 没 有 地 方 去, 你 会 带 着 我 么 杜 晗 像 是 在 嘲 笑 一 般, 嘴 角 的 一 抹 冷 笑 有 着 不 适 合 这 个 年 龄 的 冷 酷 和 无 情, 看 着 江 华 的 眼 神 毫 无 温

, 即 使 是 在 昏 暗 的 灯 光 下, 她 仍 然 可 以 那 么 耀 眼 我 没 有 地 方 去, 你 会 带 着 我 么 杜 晗 像 是 在 嘲 笑 一 般, 嘴 角 的 一 抹 冷 笑 有 着 不 适 合 这 个 年 龄 的 冷 酷 和 无 情, 看 着 江 华 的 眼 神 毫 无 温 爱 情 飞 过 苍 凉 / 作 者 :18758265241 1 红 色 格 子 的 旅 行 箱, 在 湿 漉 漉 地 上 发 出 刺 啦 刺 啦 的 声 音, 那 么 刺 耳, 就 像 是 此 刻 杜 晗 的 里 一 样, 烦 躁 而 不 安 就 这 样 走 出 来 了,18 年 禁 锢 自 己 的 地 方 就 在 身 后, 杜 晗 手 指 关 节 泛 白, 紧 紧 地 拉 着 旅 行 箱, 走

More information

目錄

目錄 目 錄 展 愛 隊 歌 3 第 三 十 二 屆 隊 慶 流 程 表 4 優 良 志 工 / 資 深 志 工 5 32 年 華 再 展 情 愛 周 大 堯 主 任 7 32 展 愛, 愛 心 滿 載 張 景 暉 老 師 1 2 范 范 老 師 的 祝 福 1 5 來 自 兒 保 組 的 祝 福 1 7 1 來 自 寄 養 組 的 祝 福 2 0 來 自 三 重 的 祝 福 2 4 來 自 新 店 的

More information

免费模板

免费模板 第 5 章 Shell 脚本及应用 1.vim 简介 vim 下三种操作模式 : Normal Mode Insert Mode Ed Mode Normal Mode( 默认模式 ) 左 / 右 / 上 / 下键 : 光标向左右上下移动 数字 + 左 / 右 / 上 / / 列数 下键 : 光标向左右上下移动数字指定的行 0 $ : 光标移动到这一行的最前面字符处 : 光标移动到这一行的最后面字符处

More information

ebook65-10

ebook65-10 1 0 M a c i n t o s h P e r l P e r l u n i x P e r l P e r l P e r P e r l 10.1 o p e n d i r d i r h a n d l e d i r e c t o r y o p e n d i r 2 P e r l U N I X U N I X Wi n d o w s 114 r e a d d i r

More information

內文.tpf

內文.tpf 2 4 6 7 8 9 9 10 11 12 13 15 18 21 22 MOD 24 25 26 27 28 33 34 37 38 39 40 56 1 45 43 91 10 1 181 43 1 181 2 Taiwan Education Resources Information Center,TERIC 3 (34 ) (3 (38 ) (39 ) 4 (18 ) (9 ) (10

More information

RTX3.2.0标准版 - 技术白皮书

RTX3.2.0标准版 - 技术白皮书 一 铭 操 作 系 统 技 术 白 皮 书 广 西 一 铭 软 件 股 份 有 限 公 司 版 权 声 明 本 书 版 权 归 广 西 一 铭 软 件 股 份 有 限 公 司 所 有, 并 保 留 对 本 文 档 及 声 明 的 最 终 解 释 权 和 修 改 权 本 文 件 中 出 现 的 任 何 文 字 叙 述 文 档 格 式 插 图 照 片 方 法 过 程 等 内 容, 除 另 有 特 别 说

More information