摘要:
#include <iostream> #include <sstream> using namespace std;//转string模板函数 template <class T> string toString(const T &v) { ostringstream os; os << v; r 阅读全文
摘要:
#!/bin/sh UNTAR="tar -xvf " #unzip all zip files function unzip_all_file() { for i in *.zip do unzip $i done } #untar all tar.gz files function untar_all_file() { for i in... 阅读全文
摘要:
用法: 删除文件夹 [root@192 Desktop]# ./test.sh d 删除文件 [root@192 Desktop]# ./test.sh f 阅读全文