4 lines
76 B
PowerShell
4 lines
76 B
PowerShell
|
./src.ps1 | ForEach-Object {
|
|||
|
echo $_
|
|||
|
clang-format -style=file -i $_
|
|||
|
}
|