forked from bymerej/tlevine-n.an
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bashrc
More file actions
31 lines (24 loc) · 858 Bytes
/
.bashrc
File metadata and controls
31 lines (24 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This is in ~/.profile; why is it needed here?
export PATH="${PATH}${PATH+:}~/bin"
# If not running interactively, don't do anything
# http://dotfiles.org/~zanko/.bashrc
[ -z "$PS1" ] && exit 0
# echo Activating extended globs
# http://mywiki.wooledge.org/glob
shopt -s extglob
# One million commands of history per session
export HISTSIZE=1000000
# Ten gigabytes of maximum history size
export HISTFILESIZE=10000000000
# Save timestamps in the history.
export HISTTIMEFORMAT="[%F %T %Z]"
# Append continuously
# http://ask.fedoraproject.org/question/18/how-to-keep-history-commands-in-sync-across
shopt -s histappend
PROMPT_COMMAND="$PROMPT_COMMAND; history -a; history -n"
echo
echo 'Remember to start these things up after boot.'
echo ' - Wetlands project notices scraper'
echo
echo 'And also just make a service that starts them properly.'
echo