XXX
发布时间:2013-03-26 11:56:43
第一个练习,你的输入是按照下列形式的行:Username:Firstname:Lastname:Telephone number写一个把这样的行转换成一个如下LDAP记录格式的 awk 脚本:dn: uid=Username, dc=example, dc=comcn: Firstname Lastnamesn: LastnametelephoneNumber: Telephone number 建立并检查一.........【阅读全文】
发布时间:2013-03-26 10:38:06
学习任务:Gnu Make学习资料:GNU Make 3.80(中文版,徐海兵译)、网络学习目标: 1、能够熟练编写中小规模project的Makefile 2、能够读懂大规模project,比如Linux kernel的Makefile 3、学习automake以实现自动化工程管理 2007-05-05&.........【阅读全文】
发布时间:2013-03-26 10:37:21
Gnu make可识别的指示符 //多行定义,define和endef组合可以定义命令包define VARendef//条件判断ifdef VARifndef VARifeq(A,B)ifneq(A,B)ifeq “A” “B”ifneq “A” “B”ifeq ‘A’ ‘B’ifneq ‘A’ ‘B’elseelseif//包含.........【阅读全文】
发布时间:2013-03-21 11:12:42
在脚本中调用另一脚本(这实际上创建了一个子进程)father.sh#!/bin/bashecho "this is the father"FILM="A Few Good Men"echo "I like the film : $FILM"#call the child script#export FILM./child.shecho "back to father"echo "and the film is : $FILM"exitchild.sh#!/bi.........【阅读全文】