2007-09-25 17:48:45 +02:00
|
|
|
# $MirOS: src/bin/mksh/dot.mkshrc,v 1.21 2007/09/25 15:48:45 tg Stab $
|
2007-09-24 22:30:04 +02:00
|
|
|
#-
|
|
|
|
# Copyright (c) 2007
|
|
|
|
# Thorsten Glaser <tg@mirbsd.de>
|
|
|
|
#
|
|
|
|
# Provided that these terms and disclaimer and all copyright notices
|
|
|
|
# are retained or reproduced in an accompanying document, permission
|
|
|
|
# is granted to deal in this work without restriction, including un-
|
|
|
|
# limited rights to use, publicly perform, distribute, sell, modify,
|
|
|
|
# merge, give away, or sublicence.
|
|
|
|
#
|
|
|
|
# Advertising materials mentioning features or use of this work must
|
|
|
|
# display the following acknowledgement:
|
|
|
|
# This product includes material provided by Thorsten Glaser.
|
|
|
|
#
|
|
|
|
# This work is provided "AS IS" and WITHOUT WARRANTY of any kind, to
|
|
|
|
# the utmost extent permitted by applicable law, neither express nor
|
|
|
|
# implied; without malicious intent or gross negligence. In no event
|
|
|
|
# may a licensor, author or contributor be held liable for indirect,
|
|
|
|
# direct, other damage, loss, or other issues arising in any way out
|
|
|
|
# of dealing in the work, even if advised of the possibility of such
|
|
|
|
# damage or existence of a defect, except proven that it results out
|
|
|
|
# of said person's immediate fault when using the work as intended.
|
|
|
|
#-
|
|
|
|
# sample mksh initialisation file for interactive shells
|
|
|
|
|
2007-05-19 18:33:10 +02:00
|
|
|
: ${EDITOR:=/bin/ed} ${TERM:=vt100} ${HOSTNAME:=$(ulimit -c 0;hostname -s 2>&-)}
|
|
|
|
[[ $HOSTNAME = @(localhost|*([ ])) ]] && HOSTNAME=$(ulimit -c 0;hostname 2>&-)
|
2007-06-20 15:38:18 +02:00
|
|
|
: ${HOSTNAME:=nil}; PS1='#'; [[ "$(ulimit -c 0; id -u 2>&-)" -eq 0 ]] || PS1='$'
|
2007-09-24 22:30:04 +02:00
|
|
|
function precmd {
|
2007-09-25 17:48:45 +02:00
|
|
|
typeset -i10 e=$?
|
|
|
|
|
|
|
|
(( e )) && print -n -- "$e|"
|
2007-09-24 22:30:04 +02:00
|
|
|
}
|
2007-09-25 17:48:45 +02:00
|
|
|
PS1='$(precmd)${USER:=$(ulimit -c 0;id -un 2>&- || print \?)}@${HOSTNAME%%.*}:$(
|
|
|
|
typeset pfx=~ wd=${PWD:-?}
|
2007-06-16 00:00:00 +02:00
|
|
|
typeset -i n=${COLUMNS:-80}/3; let n="n < 7 ? 7 : n"
|
2006-07-23 20:44:22 +02:00
|
|
|
[[ ${wd#$pfx} = $wd || $pfx = ?(/) ]] || wd=\~${wd#$pfx}
|
2007-05-19 18:33:10 +02:00
|
|
|
pfx=; while (( (${#pfx} + ${#wd}) > n )); do
|
2006-07-23 20:44:22 +02:00
|
|
|
if [[ $wd = */* ]]; then
|
|
|
|
pfx=.../
|
2007-04-16 20:54:37 +02:00
|
|
|
wd=${wd#*/}
|
2006-07-23 20:44:22 +02:00
|
|
|
else
|
|
|
|
pfx=...
|
2007-04-16 20:54:37 +02:00
|
|
|
wd=${wd#?????}
|
2006-07-23 20:44:22 +02:00
|
|
|
fi
|
2007-06-20 15:38:18 +02:00
|
|
|
done; print -r -- "$pfx$wd") '"$PS1 "
|
2007-09-03 11:25:05 +02:00
|
|
|
export EDITOR HOSTNAME LESSHISTFILE=- MKSH=$(whence -p mksh) PS1 TERM USER
|
2006-07-23 20:44:22 +02:00
|
|
|
alias l='/bin/ls -F'
|
|
|
|
alias la='l -a'
|
|
|
|
alias ll='l -l'
|
|
|
|
alias lo='la -lo'
|
2007-05-25 15:51:42 +02:00
|
|
|
alias which='whence -p'
|
2007-05-19 18:33:10 +02:00
|
|
|
whence -p rot13 >&- || alias rot13='tr [A-Za-z] [N-ZA-Mn-za-m]'
|
|
|
|
whence -p hd >&- || function hd {
|
2007-04-17 22:00:37 +02:00
|
|
|
hexdump -e '"%08.8_ax " 8/1 "%02X " " - " 8/1 "%02X "' \
|
|
|
|
-e '" |" "%_p"' -e '"|\n"' "$@"
|
|
|
|
}
|
2006-07-23 20:44:22 +02:00
|
|
|
|
2007-09-24 22:30:04 +02:00
|
|
|
# Berkeley C shell compatible dirs, popd, and pushd functions
|
|
|
|
# Z shell compatible chpwd() hook, used to update DIRSTACK[0]
|
|
|
|
set -A DIRSTACK
|
|
|
|
function chpwd {
|
|
|
|
typeset d thome
|
|
|
|
|
|
|
|
d=$(readlink -nf .)
|
|
|
|
thome=$(readlink -nf ~/.)
|
|
|
|
DIRSTACK[0]=$d
|
|
|
|
[[ ${d##$thome} = $d ]] || DIRSTACK[0]=\~${d##$thome}
|
|
|
|
:
|
|
|
|
}
|
|
|
|
chpwd .
|
|
|
|
function cd {
|
|
|
|
builtin cd "$@"
|
|
|
|
chpwd "$@"
|
|
|
|
}
|
|
|
|
function cd_csh {
|
|
|
|
typeset d t=$1
|
|
|
|
|
|
|
|
[[ $t = ~* ]] && t=$HOME${t#~}
|
|
|
|
if ! d=$(builtin cd "$t" 2>&1); then
|
|
|
|
print -u2 "${1}: ${d##*$t - }."
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
cd "$t"
|
|
|
|
}
|
|
|
|
function dirs {
|
|
|
|
typeset d
|
|
|
|
typeset -i isnoglob=0 fl=0 fv=0 fn=0 cpos=0
|
|
|
|
|
|
|
|
[[ $(set +o) == *-o\ noglob* ]] && isnoglob=1
|
|
|
|
set -o noglob
|
|
|
|
while getopts ":lvn" d; do
|
|
|
|
case $d {
|
|
|
|
(l) fl=1 ;;
|
|
|
|
(v) fv=1 ;;
|
|
|
|
(n) fn=1 ;;
|
|
|
|
(*) print -u2 'Usage: dirs [-lvn].'
|
|
|
|
return 1 ;;
|
|
|
|
}
|
|
|
|
done
|
|
|
|
shift $((OPTIND - 1))
|
|
|
|
if (( $# > 0 )); then
|
|
|
|
print -u2 'Usage: dirs [-lvn].'
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
if (( fv )); then
|
|
|
|
fv=0
|
|
|
|
while (( fv < ${#DIRSTACK[*]} )); do
|
|
|
|
d=${DIRSTACK[fv]}
|
|
|
|
if [[ $fl$d = 1~* ]]; then
|
|
|
|
d=$HOME${d#~}
|
|
|
|
fi
|
|
|
|
print -r -- "$fv $d"
|
|
|
|
let fv++
|
|
|
|
done
|
|
|
|
else
|
|
|
|
fv=0
|
|
|
|
while (( fv < ${#DIRSTACK[*]} )); do
|
|
|
|
d=${DIRSTACK[fv]}
|
|
|
|
if [[ $fl$d = 1~* ]]; then
|
|
|
|
d=$HOME${d#~}
|
|
|
|
fi
|
|
|
|
if (( fn && (cpos += ${#d} + 1) >= 79 && ${#d} < 80 )); then
|
|
|
|
print
|
|
|
|
(( cpos = ${#d} + 1 ))
|
|
|
|
fi
|
|
|
|
print -nr -- "$d "
|
|
|
|
let fv++
|
|
|
|
done
|
|
|
|
print
|
|
|
|
fi
|
|
|
|
(( isnoglob )) || set +o noglob
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
function popd {
|
|
|
|
typeset d fa=""
|
|
|
|
typeset -i isnoglob=0 n=1
|
|
|
|
|
|
|
|
[[ $(set +o) == *-o\ noglob* ]] && isnoglob=1
|
|
|
|
set -o noglob
|
|
|
|
while getopts ":0123456789lvn" d; do
|
|
|
|
case $d {
|
|
|
|
(l|v|n) fa="$fa -$d" ;;
|
|
|
|
(+*) n=2
|
|
|
|
break ;;
|
|
|
|
(*) print -u2 'Usage: popd [-lvn] [+<n>].'
|
|
|
|
return 1 ;;
|
|
|
|
}
|
|
|
|
done
|
|
|
|
shift $((OPTIND - n))
|
|
|
|
n=0
|
|
|
|
if (( $# > 1 )); then
|
|
|
|
print -u2 popd: Too many arguments.
|
|
|
|
return 1
|
|
|
|
elif [[ $1 = ++([0-9]) && $1 != +0 ]]; then
|
|
|
|
if (( (n = ${1#+}) >= ${#DIRSTACK[*]} )); then
|
|
|
|
print -u2 popd: Directory stack not that deep.
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
elif [[ -n $1 ]]; then
|
|
|
|
print -u2 popd: Bad directory.
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
if (( ${#DIRSTACK[*]} < 2 )); then
|
|
|
|
print -u2 popd: Directory stack empty.
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
unset DIRSTACK[n]
|
|
|
|
set -A DIRSTACK -- "${DIRSTACK[@]}"
|
|
|
|
cd_csh "${DIRSTACK[0]}" || return 1
|
|
|
|
(( isnoglob )) || set +o noglob
|
|
|
|
dirs $fa
|
|
|
|
}
|
|
|
|
function pushd {
|
|
|
|
typeset d fa=""
|
|
|
|
typeset -i isnoglob=0 n=1
|
|
|
|
|
|
|
|
[[ $(set +o) == *-o\ noglob* ]] && isnoglob=1
|
|
|
|
set -o noglob
|
|
|
|
while getopts ":0123456789lvn" d; do
|
|
|
|
case $d {
|
|
|
|
(l|v|n) fa="$fa -$d" ;;
|
|
|
|
(+*) n=2
|
|
|
|
break ;;
|
|
|
|
(*) print -u2 'Usage: pushd [-lvn] [<dir>|+<n>].'
|
|
|
|
return 1 ;;
|
|
|
|
}
|
|
|
|
done
|
|
|
|
shift $((OPTIND - n))
|
|
|
|
if (( $# == 0 )); then
|
|
|
|
if (( ${#DIRSTACK[*]} < 2 )); then
|
|
|
|
print -u2 pushd: No other directory.
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
d=${DIRSTACK[1]}
|
|
|
|
DIRSTACK[1]=${DIRSTACK[0]}
|
|
|
|
cd_csh "$d" || return 1
|
|
|
|
elif (( $# > 1 )); then
|
|
|
|
print -u2 pushd: Too many arguments.
|
|
|
|
return 1
|
|
|
|
elif [[ $1 = ++([0-9]) && $1 != +0 ]]; then
|
|
|
|
if (( (n = ${1#+}) >= ${#DIRSTACK[*]} )); then
|
|
|
|
print -u2 pushd: Directory stack not that deep.
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
while (( n-- )); do
|
|
|
|
d=${DIRSTACK[0]}
|
|
|
|
unset DIRSTACK[0]
|
|
|
|
set -A DIRSTACK -- "${DIRSTACK[@]}" "$d"
|
|
|
|
done
|
|
|
|
cd_csh "${DIRSTACK[0]}" || return 1
|
|
|
|
else
|
|
|
|
set -A DIRSTACK -- placeholder "${DIRSTACK[@]}"
|
|
|
|
cd_csh "$1" || return 1
|
|
|
|
fi
|
|
|
|
(( isnoglob )) || set +o noglob
|
|
|
|
dirs $fa
|
|
|
|
}
|
|
|
|
|
2006-08-14 22:32:44 +02:00
|
|
|
# strip comments (and leading/trailing whitespace if IFS is set) from
|
|
|
|
# any file(s) given as argument, or stdin if none, and spew to stdout
|
2007-04-17 22:04:08 +02:00
|
|
|
function Lstripcom {
|
• remove strcasestr.c, use home-grown implementation¹, call it stricmp,
and have it return an API-correct const char *
• enhance and stylify comments
• a little KNF and simplifications
• #ifdef DEBUG: replace strchr and strstr with ucstrchr and ucstrstr
that take and return a non-const char *, and fix the violations
• new cstrchr, cstrstr (take and give const char *)
• new vstrchr, vstrstr (take const or not, give boolean value)
• new afreechk(x) = afreechv(x,x) = if (x1) afree(x2, ATEMP)
• new ksh_isdash(str) = (str != NULL) && !strcmp(str, "-")
• replace the only use of strrchr with inlined code to shrink
• minor man page fixes
• Minix 3 signames are autogenerated with gcc
• rename strlfun.c to strlcpy.c since we don't do strlcat(3) anyway,
only strlcpy(3), and shorten it
• dot.mkshrc: move MKSH=… down to the export line
to not disturb the PS1 visual impression ☺
• dot.mkshrc: Lstripcom(): optimise
• bump version
¹) side effect from creating API-correct cstrchr, cstrstr, etc.
uses goto so it must be better ☻
tested on mirbsd-current via both Makefile and Build.sh
2007-03-04 04:04:28 +01:00
|
|
|
cat "$@" | { set -o noglob; while read _line; do
|
2006-07-23 20:44:22 +02:00
|
|
|
_line=${_line%%#*}
|
|
|
|
[[ -n $_line ]] && print -r -- $_line
|
• remove strcasestr.c, use home-grown implementation¹, call it stricmp,
and have it return an API-correct const char *
• enhance and stylify comments
• a little KNF and simplifications
• #ifdef DEBUG: replace strchr and strstr with ucstrchr and ucstrstr
that take and return a non-const char *, and fix the violations
• new cstrchr, cstrstr (take and give const char *)
• new vstrchr, vstrstr (take const or not, give boolean value)
• new afreechk(x) = afreechv(x,x) = if (x1) afree(x2, ATEMP)
• new ksh_isdash(str) = (str != NULL) && !strcmp(str, "-")
• replace the only use of strrchr with inlined code to shrink
• minor man page fixes
• Minix 3 signames are autogenerated with gcc
• rename strlfun.c to strlcpy.c since we don't do strlcat(3) anyway,
only strlcpy(3), and shorten it
• dot.mkshrc: move MKSH=… down to the export line
to not disturb the PS1 visual impression ☺
• dot.mkshrc: Lstripcom(): optimise
• bump version
¹) side effect from creating API-correct cstrchr, cstrstr, etc.
uses goto so it must be better ☻
tested on mirbsd-current via both Makefile and Build.sh
2007-03-04 04:04:28 +01:00
|
|
|
done; }
|
2006-07-23 20:44:22 +02:00
|
|
|
}
|
2007-03-04 07:20:48 +01:00
|
|
|
|
2007-09-24 22:30:04 +02:00
|
|
|
: place customsations above this line!
|