码迷,mamicode.com
首页 >  
搜索关键字:shell 体验 日志    ( 78919个结果
linux shell命令之脚本要有足够的提示
一个有参数但无提示说明的脚本#login1.sh: 用户登录,判断用户输入的用户名和密码是否错误 vi login1.sh #!/bin/bash for ((i=0; i < 3; i++))do read username read password if test "$username" = ...
分类:系统相关   时间:2021-04-14 11:41:38    阅读次数:0
linux shell 之脚本优化
vi file_can_execute_or_not1.sh #!/bin/bash #判断输入的参数个数是否为两个 if [ $# -lt 2 ]then echo "The num of parameter is not right! " exit 0fi #判断用户输入的第一个文件是否可以读i ...
分类:系统相关   时间:2021-04-13 12:56:38    阅读次数:0
linux shell命令之非交互式Shell脚本
vi no_interaction_script1.sh #!/bin/bash #提示用户该脚本3秒后退出echo "This script will quit after 3 seconds. " #计时3s sleep 1echo -n "."sleep 1echo -n "."sleep 1 ...
分类:系统相关   时间:2021-04-13 12:16:49    阅读次数:0
linux shell之数组的特殊用法
vi string_array.sh #!/bin/bash city=(Nanjing Atlanta Massachusetts Marseilles) #建立一个简单的数组echo "Extracting Substring" #演示抽取子串功能echo ${city[*]:0} #抽取整个数 ...
分类:编程语言   时间:2021-04-13 12:08:59    阅读次数:0
mongodb 聚合查询
mongo shell 操作 aggregate 使用mongo db 的 aggregate 进行聚合操作,改操作传入的参数是一个数组 aggregate 操作的参数 match 相当于 mysql 的 where,传入的是筛选条件 示例: {$match : { 'os': 'win' } } ...
分类:数据库   时间:2021-04-13 12:04:07    阅读次数:0
Jquery 网站保存信息提示消息实现,提示后自动消失
现在的大多数网站都有校验,以及信息提示:为了给用户更好的体验可以不用alert提示消息,采用jQuery提示完消息,自动消失。 CSS <style> #tip_message { z-index: 9999; position: fixed; left: 0; top: 40%; text-ali ...
分类:Web程序   时间:2021-04-12 12:47:55    阅读次数:0
zabbix 安装报错解析
一、Q:Error connecting to database: Access denied for user ‘zabbix’ @ ‘localhost’ to database ‘zabbix’(PASSWORD:YES) 浏览器输入http://ServerIP/zabbix 查看日志 ta ...
分类:其他好文   时间:2021-04-12 12:43:00    阅读次数:0
IEDA tomcat catalina 日志乱码
1 先打开tomcat的安装目录 2 编辑 conf 目录下的 logging.properties 3 用notepad++ 打开,把里面的UTF-8 通通改成 GBK 4 保存,重启Tomcat,即可生效。 ...
分类:其他好文   时间:2021-04-12 12:38:02    阅读次数:0
【VUE3.0体验】建路由,加入ElementUI3框架
1、ElementUi3框架 npm i element3 -S 引入框架 --main.js import 'element3/lib/theme-chalk/index.css' import { createApp } from 'vue' import Element3 from 'elem ...
分类:其他好文   时间:2021-04-12 12:31:47    阅读次数:0
浅谈被Swiper的坑
最近在研发“移动端触屏滑动”(手机端在线做题翻页)功能的过程当中,使用了Swiper插件,官方参考地址:swiper 写好静态模板,一切顺利,切换动态数据加载时,不能上下切换、前后滑动,动态统计template模板加载的数据量,绑定到swiper-slide类里面,虽然可以解决这个问题, 在用户体验 ...
分类:其他好文   时间:2021-04-12 12:15:18    阅读次数:0
78919条   上一页 1 ... 42 43 44 45 46 ... 7892 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!