lambda表达式 2019-12-31 language c++ Lambda函数学习 或许,Lambda 表达式算得上是 C++ 11 新增特性中最激动人心的一个。这个全新的特性听起来很深奥,但却是很多其他语言早已提供 阅读更多
tar压缩/解压缩 2019-12-17 压缩 tar czpfv /path/to/file.tar.gz -C `pwd` . 解压 tar xzvf /path/to/file.tar.gz -C /path/to 加密压缩 tar -czpvf - * | openssl des3 -salt -k password -out /path/to/file.tar.gz 解密解压 openssl des3 -d -k password -salt -in /path/to/file.tar.gz | tar xzf - 阅读更多