using System; using System.Collections.Generic; using System.Collections.Specialized; using System.ComponentModel; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Prog…
前言 只是作为一个shell的小小练习和日常统计用,瞎折腾的过程中也是摸到了获取子shell返回值的几种方法: 肯定还有别的方法,跟进程间的通信相关,希望你能提出建议和补充,谢谢~ 完整程序: #! /bin/bash #检查参数数量是否符合要求 if [ $# -ne 1 ] then echo How to use: $0 ---> basepath! exit -1 fi #获取传入的路径参数 path=$1 #声明一个关联数组 declare -A typearray while rea…