码迷,mamicode.com
首页 >  
搜索关键字:echo 颜色    ( 32990个结果
linux shell if语句
1、测试1 [root@centos7 test2]# ls a.txt [root@centos7 test2]# if [ -e a.txt ]; then echo "exist";else echo "no nxist"; fi exist [root@centos7 test2]# if ...
分类:系统相关   时间:2021-04-23 11:53:02    阅读次数:0
Android开发
开发工具:Android Studio TestView(线性布局) 1、基本属性: layout_width:组件宽度(单位dp) layout_height:组件高度 id:组件id text:文本内容 textColor:字体颜色 textStyle:字体风格,normal(无效果)、bold ...
分类:移动开发   时间:2021-04-22 16:12:15    阅读次数:0
linux 系统中read命令
1、read从键盘读入 [root@centos7 test]# echo $a [root@centos7 test]# read a 123456 [root@centos7 test]# echo $a 123456 2、-p 参数 加入提示 [root@centos7 test]# unse ...
分类:系统相关   时间:2021-04-22 15:41:37    阅读次数:0
如何快速批量创建文本文档?
在要创建文档的文件夹里新建一个文本文档。 打开该文档,把下面的命令复制粘贴进去。 命令: @echo off for /L %%x in (1,1,10) do @echo %%x>%%x.txt 按下ctrl+S键保存该内容后,关闭该文档。 选择该文档,按下f2键进行重命名。把后缀名改为bat。 ...
分类:其他好文   时间:2021-04-22 15:18:09    阅读次数:0
Web前端 table去掉td边框大小及颜色
1、预期效果 2、index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1. ...
分类:Web程序   时间:2021-04-21 12:55:41    阅读次数:0
linux 监控服务器流量
linux 监控服务器流量 #!/bin/bash ethn=$1 while true do RX_pre=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $2}') TX_pre=$(cat /proc/net/dev ...
分类:系统相关   时间:2021-04-21 12:03:54    阅读次数:0
?.nginx匹配不同的终端http_user-agent
####1.准备站点目录 for i in {android,iphone,firefox,chrome,default} ;do mkdir /html/terminal/${i} && echo $i >/html/terminal/${i}/index.html ;done ####2.准备配 ...
分类:Web程序   时间:2021-04-21 12:00:37    阅读次数:0
CodeForces-1178F1 Short Colorful Strip 区间DP
CodeForces-1178F1 Short Colorful Strip 区间DP 题意 给定$0-n$ 一共 $n+1$种颜色,现有$m$段初始时刻颜色都是0的纸,对这张纸的段进行操作,第$i$次操作会选择第$l$段到第$r$段纸进行区间染色,条件是这段此时必须为同种颜色,染为$i$。给出最终 ...
分类:其他好文   时间:2021-04-21 11:55:16    阅读次数:0
shell 时间
#不要加空格 time1=$(date) echo $time1 > /tmp/output.txt ...
分类:系统相关   时间:2021-04-21 11:49:37    阅读次数:0
echarts柱状图实现多条不同颜色渐变
series层里面 itemStyle: { normal: { // 设置圆角 barBorderRadius: [6,0,6,0], //多条线实现渐变效果 color:function(params) { var colorList = [ ['#662C58','#F84F50'], ['# ...
分类:其他好文   时间:2021-04-20 15:37:10    阅读次数:0
32990条   上一页 1 ... 18 19 20 21 22 ... 3299 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!