ubuntu20.04编译IfcOpenShell

1.安装依赖sudo apt-get install git cmake gcc g++ libboost-all-dev libcgal-dev2.以下任选一种安装OCCT包(如果源码编译安装,编译时间很长,可能需要花几个小时机器配置差的话,耐心等待)a.使用系统源中自带的sudo apt-get
c++ shell linux 2022年01月25日 1,346次浏览

自动重连云服务器实现内网穿透

本地的虚拟机或者本地linux系统,在有云服务器情况下,可以将本地服务端口通过ssh暴露到公网使用,自动重连脚本如下:#!/bin/bashwhile truedo ping xxx.xx -c 4 networkIsOk=$? </dev/tcp/xxx.xx/port
虚拟机 shell 2021年11月10日 1,231次浏览

自动重连虚拟机,端口转发

windows系统需要安装 git将打开sh的程序 默认使用git bash打开具体代码#!/bin/bashwhile truedo ping 192.168.19.125 -n 2 u20=$? ping 192.168.19.128 -n 2 u16=$? ech
虚拟机 shell 2021年09月23日 1,449次浏览

一些shell 收集

获取多个pod的错误日志及数量统计#!/bin/shif [ $1 ];then for i in `kubectl get po -n $1 | grep -i eric-apigm | awk 'NR>=2 {print $1}'` do printf "%-40s
shell 2021年01月20日 1,207次浏览