├── .gitignore ├── README.md ├── go.mod ├── go.sum ├── main.go ├── shell_memory.c └── shell_memory.h /.gitignore: -------------------------------------------------------------------------------- 1 | macos_shell_memory 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/macos_shell_memory/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/macos_shell_memory/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/macos_shell_memory/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/macos_shell_memory/HEAD/main.go -------------------------------------------------------------------------------- /shell_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/macos_shell_memory/HEAD/shell_memory.c -------------------------------------------------------------------------------- /shell_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/macos_shell_memory/HEAD/shell_memory.h --------------------------------------------------------------------------------