linlin基础指令

时间:2012-05-10 06:04:42
【文件属性】:

文件名称:linlin基础指令

文件大小:154KB

文件格式:HTM

更新时间:2012-05-10 06:04:42

linux学习

linux之shell scripts (类似dos之批次檔) 例:制做类似dos之diskcopy外部指令 文件名称:diskcopy #!/bin/sh echo -n "Insert source disk in first floppy drive,then hit enter" read ans; dd if=/dev/fd0 of=/tmp/dcopy$$ echo -n "Remove source disk and insert other disk ,then hit enter" read ans; dd of=/dev/fd0 if=/tmp/dcopy$$ /bin/rm -f /tmp/dcopy$$ 备注:不用扩展名;需更改档案属性为可执行;例 chmod 755 diskcopy ls:列出档案信息 → 类似dos之dir


网友评论