Linux C
文章平均质量分 73
zyjtx321
这个作者很懒,什么都没留下…
展开
-
用shell脚本修改mysql数据库表中某个字段的值
setFieldValue.sh#!/bin/bash#*************************************************##*************************************************#+-----------------------------+#| Default Define |#+-----------------------------+ USR=xxxPWD=xxx..原创 2020-06-04 17:46:37 · 1662 阅读 · 0 评论 -
linux下使用makeself制作一键安装包
如何使用makeself制作一键安装包1. 下载makeself[root@mp tmp]# wget http://cdn.megastep.org/makeself/makeself-2.2.0.run[root@mp tmp]# chmod +x makeself-2.2.0.run [root@mp tmp]# ./makeself-2.2.0.run 2. 例子- 目录[root@mp tmp]# ls -R ms-sample/ms-sample/:installD.原创 2020-06-03 10:48:13 · 2377 阅读 · 1 评论 -
linux C 获取CPU Usage
linux c 代码读取CPU Usage, 单位是%cpuusage.c#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct cpu_occupy_ //定义一个cpu occupy的结构体{ char name[20]; ...原创 2020-05-07 15:42:47 · 1059 阅读 · 0 评论 -
批量提取包含指定字符串的行
把多个文件中包含某字符串的行提取出来存入一个文件中[root@T tmp]# grep 'abc' file1 file2 file3 > newfile或者[root@T tmp]# grep 'abc' * > newfile去除重复的行[root@T tmp]# awk '!a[$0]++' newfile > newfile2.txt注:...原创 2020-01-19 10:51:45 · 4782 阅读 · 1 评论 -
shell脚本获取Centos服务器信息
sysInfo.sh#!/bin/bash#*************************************************## description : This scirpt used for get centos machine basic info.# # File name : sysInfo.sh##***...原创 2020-01-18 16:22:40 · 2254 阅读 · 0 评论 -
如何使能ECDH / ECDSA in openssl
The ECDH ciphers disable default in openssl , need enable by code.For ECDSA , depends on the cert type, need gen the ecdsa type cert在代码中添加函数:SSL_CTX_set_ecdh_auto(ctx, 1); //Enable ECDH ciphe...原创 2020-01-18 10:00:20 · 2393 阅读 · 0 评论