OSDN Git Service

Switch to system/core/janitors as OWNERS.
[android-x86/external-mksh.git] / mkshrc
diff --git a/mkshrc b/mkshrc
index 0da5ea6..d37de12 100644 (file)
--- a/mkshrc
+++ b/mkshrc
@@ -1,29 +1,18 @@
-# Copyright (c) 2010
-#      Thorsten Glaser <t.glaser@tarent.de>
+# Copyright (c) 2010, 2012, 2013, 2014
+#      Thorsten Glaser <tg@mirbsd.org>
 # This file is provided under the same terms as mksh.
 #-
 # Minimal /system/etc/mkshrc for Android
+#
+# Support: https://launchpad.net/mksh
 
-: ${TERM:=vt100} ${HOME:=/data} ${MKSH:=/system/bin/sh} ${HOSTNAME:=android}
-: ${SHELL:=$MKSH} ${USER:=$(typeset x=$(id); x=${x#*\(}; print -r -- ${x%%\)*})}
-if (( USER_ID )); then PS1='$'; else PS1='#'; fi
-function precmd {
-       typeset e=$?
-
-       (( e )) && print -n "$e|"
-}
-PS1='$(precmd)$USER@$HOSTNAME:${PWD:-?} '"$PS1 "
-export HOME HOSTNAME MKSH PS1 SHELL TERM USER
-alias l='ls'
-alias la='l -a'
-alias ll='l -l'
-alias lo='l -a -l'
+set +o nohup
 
-for p in ~/.bin; do
-       [[ -d $p/. ]] || continue
-       [[ :$PATH: = *:$p:* ]] || PATH=$p:$PATH
-done
+if (( USER_ID )); then PS1='$'; else PS1='#'; fi
+PS4='[$EPOCHREALTIME] '; PS1='${|
+       local e=$?
 
-unset p
+       (( e )) && REPLY+="$e|"
 
-: place customisations above this line
+       return $e
+}$HOSTNAME:${PWD:-?} '"$PS1 "