上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页
摘要: https://idc.wanyunshuju.com/cym/40.html 由于在公司服务器上权限问题比较复杂,我们解决这个问题是寻求服务器端人员的意见。让他们授予权限/。 阅读全文
posted @ 2019-07-31 17:35 lililili—— 阅读(7155) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/chenxiaomeng/p/10066821.html 阅读全文
posted @ 2019-07-31 17:25 lililili—— 阅读(218) 评论(0) 推荐(0)
摘要: 出现这个问题,代码一般是没问题的,剩下你要考虑: 1. 缩进对齐是否有问题 2. python脚本的格式是啥,如果你在linux上运行,编码需要是unix; (大部分情况下,我们是在windows下写的脚本,而想运行在linux下) 阅读全文
posted @ 2019-07-31 16:33 lililili—— 阅读(312) 评论(0) 推荐(0)
摘要: shell调用python脚本出现了这个问题,查询原因得知,python脚本是python3.6写的,我们服务器上默认的python是python2.7.3,所以会出现编码问题。 解决思路: 1.安装python3,然后python3调用 或者 2.更改python脚本,https://blog.c 阅读全文
posted @ 2019-07-31 15:25 lililili—— 阅读(1371) 评论(0) 推荐(0)
摘要: https://www.jb51.net/article/54492.htm 阅读全文
posted @ 2019-07-31 14:43 lililili—— 阅读(1024) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/janezhao/p/9732157.html 阅读全文
posted @ 2019-07-31 14:02 lililili—— 阅读(1165) 评论(0) 推荐(0)
摘要: 中文小论文投的是《红外技术》 流程记录: 1.初稿提交 5.29 由于第一次自己提交稿件,出了很多错误,好在及时修改了。这个流程最好提前问师兄师姐,如何注册,需要填什么信息之类。 2.等待责编处理 等待 3. 正在初审 提交稿件结束,编辑看你的论文和刊物是否匹配之类,给你联系外审专家 4.正在外审 阅读全文
posted @ 2019-07-31 10:38 lililili—— 阅读(2129) 评论(6) 推荐(0)
摘要: #!/bin/bash location="/root/sqlbak/" find $location -mtime +30 -type d |xargs rm -rf #删除目录find $location -mtime +30 -type f |xargs rm -f #删除文件find $lo 阅读全文
posted @ 2019-07-31 09:57 lililili—— 阅读(2704) 评论(0) 推荐(0)
摘要: 使用shell完成从配置文件中获取路径(字符匹配),在生成多级路径的过程过遇到最后一级目录乱码。 代码如下: 这个$path是从配置文件中读取。 如何解决: 1.检查是否是代码本身的问题 2.检查代码的格式utf-8啥之类的 3.检查配置文件的格式,每行结束使用\r,\n是不一样的,如果使用错误会导 阅读全文
posted @ 2019-07-30 17:44 lililili—— 阅读(956) 评论(0) 推荐(0)
摘要: empty_dir_check(){ check_dir=$1 if [ -d $check_dir ];then file_list=`find ./$check_dir -mindepth 1 -maxdepth 5 -type f` if [ $file_list == "" ];then e 阅读全文
posted @ 2019-07-30 17:38 lililili—— 阅读(767) 评论(0) 推荐(0)
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页