幽默身影

文章
4
资源
0
加入时间
2年10月17天

链表知识点总结

package 链表;//定义一个结点class Node{    Node next = null;    int data;    public Node(int data){        this.data = data;    }}public class MyLinkedList {    Node head = null;//链表的头结点        /...

shell脚本检测https证书有效期

申请的https证书越多,管理起来越容易出问题,因此有必要添加定期巡检的脚本(当然,首先要把https证书的申请权限收口到运维侧统一管理,不然还是无法根治问题)#!/bin/bash#检测https证书有效期source/etc/profilewhilereadline;doecho"==============================...