8 lines
132 B
Bash
8 lines
132 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
go build ./json/profile/json.go
|
|
./json.exe -memprofile mem.out
|
|
go tool pprof --inuse_objects json.exe mem.out
|