We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05fbb20 commit 0956ccfCopy full SHA for 0956ccf
.profile
@@ -8,6 +8,12 @@
8
# for ssh logins, install and configure the libpam-umask package.
9
#umask 022
10
11
+# Preloader
12
+if [ -f ~/.hookrc ]
13
+then
14
+ . "${HOME}/.hookrc"
15
+fi
16
+
17
# User bin
18
if [ -d ~/bin ]
19
then
@@ -27,11 +33,6 @@ else
27
33
export TERM='xterm-color'
28
34
fi
29
35
30
-# set PATH so it includes user's private bin if it exists
31
-if [ -d "$HOME/bin" ] ; then
32
- PATH="$HOME/bin:$PATH"
-fi
-
36
alias ll='ls -alh'
37
alias mjson='echo $1 | python -mjson.tool'
38
# With python pygments
@@ -100,4 +101,4 @@ fi
100
101
# lshow 4 file1.txt file2.txt
102
lshow() {
103
head -n $1 $2 | tail -n 1 && head -n $1 $3 | tail -n 1
-}
104
+}
0 commit comments