mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-23 06:33:21 +00:00
9 lines
269 B
ReStructuredText
9 lines
269 B
ReStructuredText
|
Commandes utiles
|
||
|
================
|
||
|
|
||
|
* Appliquer le header de licence sur tout le projet
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
for f in $(find . -name "*.py" ! -path "*migration*" ! -path "./env/*" ! -path "./doc/*"); do cat ./doc/header "$f" > /tmp/temp && mv /tmp/temp "$f"; done
|