Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#!/usr/bin/env bash
# To quickly benchmark Bash startup time:
#
# * for interactive login shell: `time bash --login -i -c true`
# * for interactive shell: `time bash -i -c true`
# optimization: cache current uname
# shellcheck disable=SC2034
tk__uname=$(uname)
source ~/.bashrc-support.sh
source ~/.bashrc-common.sh
[[ -r ~/.bashrc-host.sh ]] && source ~/.bashrc-host.sh
[[ -n $PS1 ]] && source ~/.bashrc-ps1.sh
true # ensure last command is successful