FastHandle - IT Operations Examples

FastHandle is fast operation tools for infrastructure configurations and tests.

User Tools

Site Tools


Sidebar


Top     SiteMap

Manager Server

Target Server

$FHHOME/bin/xxx.sh | xxxx.exp













.

preparation:fhhome:fhghost.html



Top#Preparation

$FHHOME/fhscripts/fhghost.sh

Operation

$ fhghost.sh  -h

$ fhghost.sh  FILE  |fab  -- hostname
$ fhghost.sh  "*"  hosts/xxxx  |fab  -- hostname
$ fhghost.sh  PATTERN FILE  |fab  -- hostname


fhghost.sh

$FHHOME/fhscripts/fhghost.sh

#!/bin/bash
#===========================================================
# fhghost.sh    FastHandle Grep Host
#
# How to use
#   Help
#     fhghost.sh  -h
#   Test
#     fhghost.sh -a FILE
#   pipe to Fabric
#     fhghost.sh  FILE | fab xxx
#     fhghost.sh  "*"  hosts/xxxx |fab xxx  <- like grep PATTERN FILE
#     fhghost.sh  PATTERN FILE |fab xxx     <- like grep PATTERN FILE
#
#===========================================================

help(){
cat << @
Example
  fhghost.sh  FILE
  fhghost.sh  PATTERN FILE
  fhghost.sh  "*" FILE
@
}

if [ "$#" -eq 0 ] ; then
    help
    exit 0
fi


if [ "$#" -eq 1 ] ; then

    case "$1" in
        -h | --help )
            help
            exit 0
            ;;
        * )
            FILE="$1"
            grep -Ev "^#|^$" "${FILE}"  | awk {'print $1'}
            ;;
    esac
fi

if [ "$#" -eq 2 ] ; then

    case "$1" in
        -a | --all | -t | --test | -v )
            FILE="$2"
            grep -Ev "^#|^$" "${FILE}"
            ;;
        * )
            PATTERN="$1"
            FILE="$2"
            grep -Ev "^#|^$" "${FILE}"  | grep -E "${PATTERN}" | awk {'print $1'}
            ;;
    esac

fi


Top#Preparation



Top#Preparation



preparation/fhhome/fhghost.html.txt ยท Last modified: 2019/02/12 23:28 by kurihara