一、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello();#cat/etc/rc.d/init.d/functions|grep‘[[:alpha:]].*()‘二、使用echo命令输出一个绝对路径,使用grep取出其基名;扩展:取出其路径名;#echo/etc/sysconfig/network-scripts|grep‘^/[[:..
分类:
系统相关 时间:
2017-02-22 15:40:10
阅读次数:
303
#!/bin/bash
#chkconfig:-3021
#description:httpservice.
#SourceFunctionLibrary
./etc/init.d/functions
#NginxSettings
NGINX_SBIN="/usr/local/nginx/sbin/nginx"
NGINX_CONF="/usr/local/nginx/conf/nginx.conf"
NGINX_PID="/usr/local/nginx/logs/nginx.pid"
RETVAL=0
..
分类:
其他好文 时间:
2017-02-20 23:40:34
阅读次数:
316
在入口main.js里构建scss是通过引入模块的方式 在.vue组件里是单独构建的 里面的rem()是_functions.scss里定义的一个scss函数 然而这个rem()函数一直用不了,找问题找了很长时间,当然最后还是解决了。 webpack在对main.js里引入的scss编译时,分别把每 ...
分类:
Web程序 时间:
2017-02-20 13:52:00
阅读次数:
1778
/** * 过滤转换入脚本 * @param $data * @param $no_replace_key 不需要过滤转换的数据键 * @param string $request_type 请求类型 get post */ function search_content_filter($data ... ...
分类:
Web程序 时间:
2017-02-18 19:45:13
阅读次数:
199
解决方法: 第一、编辑/usr/local/php/etc/php.ini文件 第二、找到disable_functions这一行中,删除"scandir,"这一段脚本,然后保存这个文件退出 (lnmp环境包大概在303行) 第三、运行 /etc/init.d/php-fpm restart 命令, ...
分类:
其他好文 时间:
2017-02-18 00:53:09
阅读次数:
186
Google C++ Style Guide Table of Contents Header Files Self-contained Headers The #define Guard Forward Declarations Inline Functions Names and Order o ...
分类:
编程语言 时间:
2017-02-16 13:34:27
阅读次数:
295
官方介绍: python3:https://docs.python.org/3/library/functions.html?highlight=built#ascii python2:https://docs.python.org/2/library/functions.html?highligh ...
分类:
编程语言 时间:
2017-02-16 01:39:10
阅读次数:
195
wordpress登录密码框明文显示最后一个输入的字符 js文件 那这种功能该怎么实现呢? 1、添加js点此下载 需要用到的js(2kb),将此js文件上传到当前使用wordpress主题根目录下的js文件夹中。 2、添加php代码在wordpress后台编辑functions.php函数文件,在最 ...
分类:
其他好文 时间:
2017-02-14 21:44:15
阅读次数:
232
基于zabbix 3.0 https://www.zabbix.com/documentation/3.0/manual/api/reference Method reference This section provides an overview of the functions provide ...
1、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello()grep"[[:allpha:]]\+\(()\)"/etc/rc.d/init.d/functions2、使用echo命令输出一个绝对路径,使用grep取出其基名;echo"/etc/rc.d/init.d/functions"|扩展:取出其路径名echo"/etc/rc.d/init...
分类:
其他好文 时间:
2017-02-13 22:24:42
阅读次数:
165