1 Star 0 Fork 0

Sun Moon Fan/libwebrtc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
format.sh 498 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
# This script finds all files with .cc or .h extensions in the current directory
# and its subdirectories, and applies the clang-format tool to format them according
# to the style defined in a configuration file named ".clang-format" located in the
# root directory of the project. The "-i" option overwrites the original files with
# the formatted version.
find . -name "*.cc" -o -name "*.h" | xargs dos2unix
find . -name "*.cc" -o -name "*.h" | xargs clang-format -style=google -i
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sun-moon-fan/libwebrtc.git
[email protected]:sun-moon-fan/libwebrtc.git
sun-moon-fan
libwebrtc
libwebrtc
main

搜索帮助