Perl_CGI六天入门 第一天 1.1 Unix环境 1.2 chmod命令 1.3 定位Perl和sendmail 第二天 2.1 使用Emacs 2.2 Perl简介 2.3 HTML FORM 第三天 3.1 回应脚本 3.2 脚本解释 3.3 BODY部分 第四天 4.1 email子过程 4.2 写文件 4.3 建立log文件 第五天 5.1 留言板CGI代码 5.2 代码详解 5.3 读取log文件 第六天 6.1 设置口令 6.2 计数器
标签: Perl_CGI sendmail Emacs chmod
上传时间: 2015-05-20
上传用户:小儒尼尼奥
Linux chmod related materials
标签: materials related Linux chmod
上传时间: 2016-02-23
上传用户:784533221
实现功能(以下命令全部了小写) ls 显示文件目录 chmod 改变文件权限 chown 改变文件拥有者 chgrp 改变文件所属组 pwd 显示当前目录 cd 改变当前目录 mkdir 创建子目录 rmdir 删除子目录 mv 改变文件名 cp 文件拷贝 rm 文件删除 ln 建立文件联接 cat 连接显示文件内容 passwd 修改用户口令
上传时间: 2013-12-14
上传用户:change0329
UNIX、LINUX 环境下,chmod 命令的C源代码
上传时间: 2015-05-17
上传用户:1051290259
操作系统课程设计 要完成的任务是模拟unix操作系统中的文件系统功能。在终端界面上用户可以象unix的shell命令一样输入一些命令,如输入ls 显示文件目录,chmod改变文件权限,chown改变文件拥有者,chgrp改变文件所属组,chnam改变文件名,pwd显示当前目录,cd改变当前目录,mkdir创建目录,rmdir删除目录,mk创建文件 ,cp文件拷贝,rm删除文件,cat显示文件内容,login切换用户,passwd修改用户口令 等功能。在后台,要实现混合索引式文件结构,包括用空闲结点号栈管理空闲结点和成组链接发管理空闲盘块。
上传时间: 2013-12-21
上传用户:comua
学会对文件的记录锁定,及解锁。#include <stdio.h> #include <unistd.h> #include <fcntl.h> int main() { int fd int i struct { char name[20] uint ID int age } myrec fd =open("name", O_RDWR|O_CREAT, 0755) if (fd == -1) return -1 printf("Input your name:") scanf("%s", myrec.name) printf("Inpute your ID :") scanf("%d", &myrec.ID) printf("Input your age :") scanf("%d", &myrec.age) lseek(fd, 0,SEEK_END) lockf(fd, 1, 0) write(fd, (void *)&myrec, sizeof(myrec)) lockf(fd, 0 ,0) return 0 } 执行命令cc lock.c –o lock.out chmod +x lock.out ./lock.out
标签: 记录
上传时间: 2016-01-04
上传用户:亚亚娟娟123
Linux命令大全,包括:cat、 cd 、chmod 、chown、cp、cut 、 find 、less、ln 、locate、 ls 、more 等命令的详细用法
上传时间: 2016-01-26
上传用户:gaome
模拟unix操作系统中的文件系统功能,在终端界面上用户可以象unix的shell命令一样输入一些命令,如输入ls 显示文件目录,chmod改变文件权限,chown改变文件拥有者,chgrp改变文件所属组,chnam改变文件名,pwd显示当前目录,cd改变当前目录,mkdir创建目录,rmdir删除目录,mk创建文件 ,cp文件拷贝,rm删除文件,cat显示文件内容,login切换用户,passwd修改用户口令 等功能。在后台,要实现混合索引式文件结构,包括用空闲结点号栈管理空闲结点和成组链接发管理空闲盘块。
上传时间: 2013-12-13
上传用户:13681659100
某大学的unix模拟实验试题要求,及样例源码,实现核心的数据结构和算法,只需在此基础上调用已编好的节点操作函数实现如passwd\chmod等命令
上传时间: 2016-08-26
上传用户:chfanjiang
un the configuration script ---------------------------- In the CGIs directory there is a configure.s and a configure.bat file. Run this file after you ve moved the CGIs directory to it s desired location. The configure script will create a file nammed apache.conf. Append this file the the httpd.conf file. LINUX: [prompt]$ ./configure.s [prompt]$ cat apache.conf >> /etc/httpd/conf/httpd.conf Note: you may need to set the executable flag on the script chmod 755 configure.s WINDOWS: prompt> configure.bat Copy the contents of apache.conf to httpd.conf
标签: configuration the directory config
上传时间: 2014-01-25
上传用户:heart520beat