12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/bin/bash
- #set -x
- set -o posix
- #set -u
- #set -e
- #+
- #
- # ===============
- # Fgo_to_tools.sh
- # ===============
- #
- # --------------------------
- # Go to the TOOLS directory
- # --------------------------
- #
- # SYNOPSIS
- # ========
- #
- # ::
- #
- # $ Fgo_to_tools.sh
- #
- #
- # DESCRIPTION
- # ===========
- #
- #
- # Go to the TOOLS directory
- #
- # EXAMPLES
- # ========
- #
- # ::
- #
- # $ ./Fgo_to_tools.sh
- #
- #
- # TODO
- # ====
- #
- # option debug
- #
- #
- # EVOLUTIONS
- # ==========
- #
- # $Id: Fgo_to_TOOLS.sh 3294 2012-01-28 16:44:18Z rblod $
- #
- #
- #
- # * creation
- #
- #-
- cd ${MAIN_DIR}/TOOLS
|