inux读取ISO文件或是光驱的方法--挂载 首先在虚拟机选项的设置里设置CD/DVD选项,勾选:Connect at power on 再在连接中选择:Use ISO image file即选择镜像文件的目录地址 然后在/root目录下输入命令:# mount /mnt/cdrom 如输出错误为: mount: can't find cdrom in /etc /fstab or /etc/mtab 可知在/etc/fstab找不到要挂载的文件 有两种解决方式: 1.输入命令:# mount
shell脚本实现读取一个文件中的某一列,并进行循环处理 1) for循环 #!bin/bash if [ ! -f "userlist.txt" ]; then echo "userlist.txt 不存在!" fi for userid in `(cat userlist.txt)` do a=$userid echo $a done #!bin/bash if [ ! -f userlist.txt ]; then echo "userlist.tx
actionscript中读取本地文件操作有两种代码如下 1.使用File和FileStream两个类,FileStream负责读取数据的所以操作:(同步操作) var stream:FileStream = new FileStream(); var file:File = new File('E:/test.txt');//绑定一个文件 stream.open(file,FileMode.READ);//读取文件 trace(stream.readMultiByte(stream.bytes