Advertisement

bootiack - September 23rd, 2008 [entries|archive|friends|userinfo]
bootiack

[ website | My Website ]
[ userinfo | livejournal userinfo ]
[ archive | journal archive ]

September 23rd, 2008

interesting appservers [Sep. 23rd, 2008|12:19 am]
http://groups.google.com/group/symbolicweb
coreserver
happs
wash
uncommon web
aolserver
cherokee
asyncweb
seaside
linkpost comment

add yaws in erlang to webservers [Sep. 23rd, 2008|12:35 am]
add yaws in erlang to webservers
and java system webserver 7
linkpost comment

erlang [lang] and mnesia [db] [Sep. 23rd, 2008|12:45 am]
http://www.erlang.org/faq/faq.html
http://www.erlang.org/doc/apps/mnesia/part_frame.html
linkpost comment

cl-httpd clik [Sep. 23rd, 2008|02:08 am]
http://supertech.csail.mit.edu/cilk/

http://www.cl-http.org:8001/cl-http/
linkpost comment

ksh command history [Sep. 23rd, 2008|11:49 am]
#get ksh from http://www.research.att.com/~gsf/download/
#http://www.kornshell.com/info/
# "The new version of ksh has the functionality of other scripting languages #such as awk, icon, perl, rexx, and tcl. For this and many other reasons, #ksh is a much better scripting language than any of the other popular #shells"

> My shell is the ksh. How do I enable the history in this shell so that I can retrieve all previously
> entered commands by pressing the "up" arrow key ?

I believe history is always enabled.
Look at the section of the man page that mentions HISTFILE.

For the arrow keys, in your login profile
export ENV=$HOME/.kshrc

in your .kshrc add this:

case $- in
*i*) #interactive ksh
# This stuff lets the arrow keys work in an xterm...
set -o emacs
alias __A=`echo "\020"` # up arrow == ^p == back a command
alias __B=`echo "\016"` # dn arrow == ^n == down a command
alias __C=`echo "\006"` # rt arrow == ^f == forward a character
alias __D=`echo "\002"` # lf arrow == ^b == back a character
esac
link1 comment|post comment

ksh basics point 0 learn to type [doh!] [Sep. 23rd, 2008|01:12 pm]
http://www.bolthole.com/solaris/ksh-beforeyoustart.html
linkpost comment

ksh setup with command history and nice prompt style [Sep. 23rd, 2008|01:26 pm]
#ksh command history+nice prompt howto
#get ksh from http://www.research.att.com/~gsf/download/ [download gunzip #and rename ksh and place in /bin, chmod 755, and link /usr/bin/ksh to #/bin/ksh]
#http://www.kornshell.com/info/
# "The new version of ksh has the functionality of other scripting languages #such as awk, icon, perl, rexx, and tcl. For this and many other reasons, #ksh is a much better scripting language than any of the other popular #shells"


For the arrow keys, in your login profile [/home/user/.profile]
export ENV=$HOME/.kshrc
PS1="$LOGNAME@`uname -n` \$PWD\$ "

in your .kshrc add this:

case $- in
*i*) #interactive ksh
# This stuff lets the arrow keys work in an xterm...
set -o emacs
alias __A=`echo "\020"` # up arrow == ^p == back a command
alias __B=`echo "\016"` # dn arrow == ^n == down a command
alias __C=`echo "\006"` # rt arrow == ^f == forward a character
alias __D=`echo "\002"` # lf arrow == ^b == back a character
esac
linkpost comment

gtypist typing tutor -- learn to type! aggggh!! [Sep. 23rd, 2008|01:45 pm]
http://www.gnu.org/software/gtypist/
linkpost comment

some good ksh scripts [Sep. 23rd, 2008|01:56 pm]
http://svn.genunix.org/repos/on/branches/ksh93/gisburn/scripts/
linkpost comment

wilt chamberlain was pretty good [Sep. 23rd, 2008|02:00 pm]
http://en.wikipedia.org/wiki/List_of_National_Basketball_Association_players_with_60_or_more_points_in_a_game
linkpost comment

dvorak was one smart little bugger [Sep. 23rd, 2008|02:38 pm]
http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard#Overview
linkpost comment

npre nagios plugin [Sep. 23rd, 2008|02:48 pm]
http://www.maxsworld.org/index.php/how-tos/nrpe
linkpost comment

nagios install [Sep. 23rd, 2008|03:20 pm]
http://www.maxsworld.org/index.php/how-tos/nagios
linkpost comment

hobbit monitoring system [Sep. 23rd, 2008|04:40 pm]
http://en.wikibooks.org/wiki/System_Monitoring_with_Hobbit
http://sourceforge.net/projects/hobbitmon/
linkpost comment

networking nice guide from folks at openbsd [Sep. 23rd, 2008|09:52 pm]
http://openbsd.org/faq/faq6.html#Intro
linkpost comment

navigation
[ viewing | September 23rd, 2008 ]
[ go | Previous Day|Next Day ]

Advertisement