3 lines
69 B
Bash
3 lines
69 B
Bash
|
#!/bin/bash
|
||
|
for i in $(find $(pwd) -name '*.go');do gofmt -w $i;done
|