Search found 1 match

by vig86
2016-10-25T07:39:23-07:00
Forum: Users
Topic: Convert shell script to batch file
Replies: 2
Views: 10869

Convert shell script to batch file

I need help concerting this shell script to .bat file. Any pointers would help.


#!/usr/bin/ksh

. /app/common/scripts/setenv.sh

cd /app/PPaths_ALM/config

echo '[Global]' > DatabaseParam.config
if [[ -n "$1" ]] ; then
SQLDB=$1
echo '$DBConnectionEDW=EDW_STG_'$SQLDB >>DatabaseParam.config
else ...