经典shell

#!/bin/bash
echo "You are logged in as `whoami`";
if [ `whoami` != root ]; then
   echo "Must be logged on as root to run this script."
   exit
fi
   echo "Running script at `date`"


#!/bin/bash

doContinue=n
   echo "Do you really want to continue? (y/n)"
   read doContinue
if [ "$doContinue" != y ]; then
   echo "Quitting..."
   exit
   fi
echo "OK... we will continue."


#!/bin/bash
stty -echo
   echo -n "Enter the database system password: "
   read pw
   stty echo
echo "$pw was entered"

#!/bin/bash
if [ -z "$1" ]; then
   echo ""
   echo " ERROR : Invalid number of arguments"
   echo " Usage : $0 "
   echo ""
   exit
fi
   if [ -d $1 ]; then
      echo "$1 is a directory."
   else
      echo "$1 is NOT a directory."
   fi

#!/bin/bash
if [ -z "$1" ]; then
   echo ""
   echo " ERROR : Invalid number of arguments"
   echo " Usage : $0 "
   echo ""
   exit
fi
   if [ ! -r $1 ]; then
      echo "$1 is NOT readable."
   else
      echo "$1 is readable."
   fi

你可能感兴趣的:(shell)