03 2016 档案
摘要:shell判断文件,目录是否存在或者具有权限 #!/bin/sh Path="/var/log/httpd/" File="/var/log/httpd/access.log" #这里的-x 参数判断$Path是否存在并且是否具有可执行权限 if [ ! -x "$Path"]; then mkdir "$Path" fi #这里的-d 参数判断$Path是否存在 if [ ! -d ...
阅读全文
摘要:dir=/etc/ for file in $dir/*; do echo $file done
阅读全文
摘要:很多时候在使用Linux的shell时,我们都需要对文件名或目录名进行处理,通常的操作是由路径中提取出文件名,从路径中提取出目录名,提取文件后缀名等等。例如,从路径/dir1/dir2/file.txt中提取也文件名file.txt,提取出目录/dir1/dir2,提取出文件后缀txt等。 1、${
阅读全文
摘要:根据tensorflow的官网描述,安装virtualenv installation,安装结束后测试tensorflow是否安装成功, import tensorflow as tf 出现错误: 这是由于protobuf版本太低的原因,解决方案如下:(only cpu) 然后: 出现:
阅读全文