├── .gitignore ├── README ├── bin └── bashprof ├── libexec └── bashprof │ ├── bash │ └── bashprof-format-results ├── share └── bashprof │ ├── env.bash │ └── profile.bash └── src ├── Makefile ├── bash.h └── utime.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.dylib 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/bashprof/HEAD/README -------------------------------------------------------------------------------- /bin/bashprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/bashprof/HEAD/bin/bashprof -------------------------------------------------------------------------------- /libexec/bashprof/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/bashprof/HEAD/libexec/bashprof/bash -------------------------------------------------------------------------------- /libexec/bashprof/bashprof-format-results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/bashprof/HEAD/libexec/bashprof/bashprof-format-results -------------------------------------------------------------------------------- /share/bashprof/env.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/bashprof/HEAD/share/bashprof/env.bash -------------------------------------------------------------------------------- /share/bashprof/profile.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/bashprof/HEAD/share/bashprof/profile.bash -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/bashprof/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/bash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/bashprof/HEAD/src/bash.h -------------------------------------------------------------------------------- /src/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstephenson/bashprof/HEAD/src/utime.c --------------------------------------------------------------------------------