Another merge.
This commit is contained in:
commit
80cb56517f
1 changed files with 8 additions and 1 deletions
9
profile
9
profile
|
@ -70,7 +70,7 @@ xmodmap = $lib/xmodmap
|
||||||
|
|
||||||
switch( `{uname} ){
|
switch( `{uname} ){
|
||||||
case ( Linux NetBSD DragonFly OpenBSD FreeBSD ) # On Unix-like systems.
|
case ( Linux NetBSD DragonFly OpenBSD FreeBSD ) # On Unix-like systems.
|
||||||
if(which aes > /dev/null){
|
if(which aes >/dev/null >[2=1]){
|
||||||
LESS_TERMCAP_md = `{aes fg-red bold }
|
LESS_TERMCAP_md = `{aes fg-red bold }
|
||||||
LESS_TERMCAP_me = `{aes end}
|
LESS_TERMCAP_me = `{aes end}
|
||||||
LESS_TERMCAP_us = `{aes fg-green bold}
|
LESS_TERMCAP_us = `{aes fg-green bold}
|
||||||
|
@ -123,6 +123,7 @@ fn ll {
|
||||||
|
|
||||||
|
|
||||||
cdfile = $tmp/cdfile
|
cdfile = $tmp/cdfile
|
||||||
|
if(! test -d `{dirname $cdfile}) mkdir `{dirname $cdfile}
|
||||||
if(! test -r $cdfile) touch $cdfile
|
if(! test -r $cdfile) touch $cdfile
|
||||||
|
|
||||||
fn ucds {
|
fn ucds {
|
||||||
|
@ -177,6 +178,12 @@ fn uprofile {
|
||||||
. $profile
|
. $profile
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn m {
|
||||||
|
for(i in $*){
|
||||||
|
man $man/$i | less
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# Setting enviroment.
|
# Setting enviroment.
|
||||||
if(test -r $setenv){
|
if(test -r $setenv){
|
||||||
. $setenv
|
. $setenv
|
||||||
|
|
Loading…
Reference in a new issue