blob: c9551c43f63d7e642ca3be91beafd28a722e0e69 (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# $FreeBSD: stable/12/share/skel/dot.profile 337497 2018-08-08 19:24:20Z asomers $
#
# .profile - Bourne Shell startup script for login shells
#
# see also sh(1), environ(7).
#
# These are normally set through /etc/login.conf. You may override them here
# if wanted.
# PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin; export PATH
# BLOCKSIZE=K; export BLOCKSIZE
# Setting TERM is normally done through /etc/ttys. Do only override
# if you're sure that you'll never log in via telnet or xterm or a
# serial line.
# TERM=xterm; export TERM
EDITOR=emacs; export EDITOR
PAGER=less; export PAGER
# set ENV to a file invoked each time sh is started for interactive use.
ENV=$HOME/.shrc; export ENV
# Query terminal size; useful for serial lines.
if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi
## customs ##
export PS1="[\u@\[\033[0;32m\]\H\[\033[00m\] \w]\\$ "
export HISTSIZE=10000
export HISTCONTROL=ignorespace:erasedups
export CLICOLOR=yes
shopt -s checkwinsize
alias s='screen -r'
alias home='cd /usr/local/www/data-dist/simeon'
alias youtube-dl='/usr/local/bin/youtube-dl -f best -o "%(title)s.%(ext)s"'
# logins #
alias bb='ssh -2 -4 sb'
alias lblackmore='ssh -2 -4 b'
alias lfg='ssh -2 -4 fg'
alias lheep='/usr/local/bin/ssh -2 -4 hb'
alias lrasp='ssh -2 -4 rp'
alias glover='ssh -2 -4 gl'
alias lsbjail01='ssh -2 -4 sb-jail01'
alias lsbjail02='ssh -2 -4 sb-jail02'
##########
## mutt ##
alias mgsgs='mutt -F ~/.muttrc.sgs_gmail'
alias mblackmore='mutt -F ~/.muttrc.pichove'
alias mgueorgss='mutt -F ~/.muttrc.gueorgss_gmail'
##########
export LANG=en_US.UTF-8
[[ $PS1 && -f /usr/local/share/bash-completion/bash_completion.sh ]] && \
source /usr/local/share/bash-completion/bash_completion.sh
|