# LibsBuild **Repository Path**: yjkhtddx/LibsBuild ## Basic Information - **Project Name**: LibsBuild - **Description**: 编译脚本 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-19 - **Last Updated**: 2021-11-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 编译库脚本 ## Libs ### ffmpeg gitpath: ## Tools ### stdout stderr ```shell # 标准化输出写到日志文件 ./test > info.log # 标准化输出追加到日志文件 ./test >> info.log # 标准化输出和错误输出写到日志文件 ./test >& info.log # 标准化输出和错误输出分别写到日志文件 (./test > out.log) >& err.log ``` ### tee ```shell # 直接覆盖日志文件 ls -l | tee ./t.log # 将输出内容附加到日志文件 ls -l | tee -a ./t.log ```