frouin.me

Formater des fichiers cpp et h

Introduction

user

Jean-Michel Frouin

CTO @ WakeOnWeb.com


cpp

Formater des fichiers cpp et h

Posted by Jean-Michel Frouin on .
Featured

cpp

Formater des fichiers cpp et h

Posted by Jean-Michel Frouin on .
Appliquer rapidement un formatage commun, à tous les fichiers *.h et *.cpp en utilisant bcpp.

#!/bin/bash

for i in `find . -name "*.h" -o -name "*.cpp"`
do
   bcpp ${i} > ${i}2;
   mv ${i}2 ${i}
done;
user

Jean-Michel Frouin

https://frouin.me

CTO @ WakeOnWeb.com