搜索资源列表
myshell
- 实现Shell,能处理命令 cd :改变进程当前路径 pwd :查看进程当前路径 pid:查看当前进程号(getpid()系统调用) logout :退出shell ls [-l] rm [-r] mkdir, mv, cp-achieve Shell, can handle orders cd : the process of change current path pwd : View current path process pid : View the cur
unix
- 模拟unix操作系统中的文件系统功能,在终端界面上用户可以象unix的shell命令一样输入一些命令,如输入ls 显示文件目录,chmod改变文件权限,chown改变文件拥有者,chgrp改变文件所属组,chnam改变文件名,pwd显示当前目录,cd改变当前目录,mkdir创建目录,rmdir删除目录,mk创建文件 ,cp文件拷贝,rm删除文件,cat显示文件内容,login切换用户,passwd修改用户口令 等功能。在后台,要实现混合索引式文件结构,包括用空闲结点号栈管理空闲结点和成组链接发管
Unix_shell
- 实现功能(以下命令全部了小写) ls 显示文件目录 chmod 改变文件权限 chown 改变文件拥有者 chgrp 改变文件所属组 pwd 显示当前目录 cd 改变当前目录 mkdir 创建子目录 rmdir 删除子目录 mv 改变文件名 cp 文件拷贝 rm 文件删除 ln 建立文件联接 cat 连接显示文件内容 passwd 修改用户口令
os
- 操作系统接口:兼容Unix 和Linux 命令接口。 为Windows 操作系统建立一个兼容Unix 命令的命令接口; 实现命令包括ls,cat,cp,rm,mv,ren,mkdir,rmdir,cd,help,exit命令的内容与详细格式请查阅unix 命令手册; 可以字符形式接收命令,执行命令,然后显示命令执行结果。
unix仿真
- provides implementations of the following UNIX APIs: chdir(), getcwd(), mkdir(), rmdir() dlopen(), dlclose(), dlsym(), dlerror() getpagesize() gettimeofday() link(), unlink() glob(), globfree() mmap(), munmap(), msync() opendir(), readdir
Multiusermlti-leveldirectoryofthefilesystem
- (1)具有login (用户登录) (2)系统初始化(建文件卷、提供登录模块) (3)文件的创建: create (4)文件的打开:open (5)文件的读:read (6)文件的写:write (7)文件关闭:close (8)删除文件:delete (9)创建目录(建立子目录):mkdir (10)改变当前目录:cd (11)列出文件目录:dir (12)退出:logout -(1) with a login (user login) (2)
Linuxcommand
- linux 中 常用的命令,超级棒,几乎包括所有的linux 常用的操作指令,cp,mv,su,mkdir-the command of linux
coreutils-5.94
- Linux工具集源代码,如ls、chown、mkdir等-Linux source code tools such as ls, chown, mkdir, etc.
vta-1.0-source.tar
- The binary consists of three executable files (vta, pcap, and getSock) and several trace files. To use them, first mkdir vta-1.0. Then cd vta-1.0, and mkdir vta again (yes, twice)
mkdir
- 在linux环境下mkdir命令的源代码,欢迎下载-cmd mkdir in linux
mkdir
- 在用户空间中,建立目录所用的API为mkdir().它在内核中的系统调用入口是sys_mkdir()-tell you the how to "mkdir"
FileSystem
- 在Ubuntu下实现的小型文件系统,包括主控,函数解析等模块,实现的功能有,mkdir,touch... 等-To achieve in a small Ubuntu file system, including the master, the function analysis and other modules to achieve the function, mkdir, touch ... etc.
mkdir
- 在Linux系统中,最常用的命令就是mkdir,他的功能就相当于XP系统中,新建一个文件夹-In Linux systems, the most commonly used command is mkdir, his function is equivalent to XP, create a new folder
9base-6.tar
- 9base 9base is a port of various original Plan 9 tools for Unix, based on plan9port. It currently contains the following original (no source changes) shell commands from Plan 9 for Unix: ascii awk basename bc cal cat cleann
code
- 一个linux下简单的shell 支持cd,mkdir echo 重定向等操作-A simple shell supported under linux cd, mkdir echo redirection operator
bar_with_relro
- Need either unistd.h or direct.h to prototype getcwd() and mkdir().
symlink
- symlink.c - make a symlink in the filesystem, based on mkdir.c. -symlink.c - make a symlink in the filesystem, based on mkdir.c.
mkdir
- Linux Device Driver: vroot result= mkdir(path, vroot args.mkdir.mode) .
mkdir
- Malloc buffers and set up cache.
shell
- 程序要求: (1) 程序运行时,先显示欢迎信息; (2) 创建一个新的用户。用户名为本人的姓名拼音缩写加学号的后两位 (3) 在本人的主目录下创建目录,目录的名称为本人的学号 (4) 在新创建的目录下,创建一个新文件,文件名为本人的姓名全拼 (5) 修改文件的权限为-rwxr--r--; (6) 判断文件是否可读,如果可读,显示“File yangchuanying is readable.”,否则,显示“File yangchuanying is not readable.”