http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net
发布时间:2011-10-13 11:23:19
#!/bin/ksh # Scriptname: xtermcolor# Sets the xterm foreground color (the color of the prompt and # input typed for interactive windows. read color?"Choose a foreground color for your terminal?" case "$color" in *[Bb]l??) xterm -fg blue -fn terminal & ;; *[Gg]reen) .........【阅读全文】
发布时间:2011-10-13 10:49:22
#!/bin/ksh# Script to test command line argumentsprint The name of this script is $0.print The arguments are $*.print The first argument is $1.print The second argument is $2.print The number of arguments is $#.oldparameters=$*set Jake Nicky Scottprint All the positional parameters .........【阅读全文】
发布时间:2011-10-13 09:57:04
#!/bin/ksh# Scriptname: are_you_okprint "Are you ok (y/n) ?"read answerif [ "$answer" = Y -o "$answer" = y ] # Old-style testthen print "Glad to hear it."fi ****************************************************************#!/bin/ksh# Scriptname: ar.........【阅读全文】
发布时间:2011-10-13 08:31:35
#!/bin/csh -f# This script is called systype# Program to determine the type of system you are on.echo "Your system type is: "set release = (`uname -r`)switch (`uname -s`)case SunOS: switch ("$release") case 4.*: echo "SunOS $release" breaksw&n.........【阅读全文】