Home > OS >  Ask Daniel how to convert a shell script to Windows bat script
Ask Daniel how to convert a shell script to Windows bat script

Time:09-23

How the shell script below transformation into a bat script?

#! The/usr/bin/env bash

# Command line example:
# start. Sh (arg0) trcFile (arg1) board (arg2) trcType (arg3) version (arg4)

The exec 2 & gt;/dev/null

CmdDir=$(dirname ${0})
TrcFile=$2; Board=$4; TrcType=$6; Version=$8

TrcName=$(the basename $trcFile)
TrcDir=$cmdDir/trace/$trcName

The mkdir -p $trcDir & amp; & The rm $trcDir/*
Cp $trcFile $trcDir

The tar xf $trcDir/$trcName - C $trcDir & gt;/dev/null
If [$? - eq 0]
Then
The rm $trcDir/$trcName
The else
Unzip the -o $trcDir/$$trcDir trcName - d & gt;/dev/null
[$? - eq 0] & amp; & The rm $trcDir/$trcName
Fi

If [" $6 "==" imt "]
Then
Gzip -d $trcDir/${trcName %. Tar}/*/current/*. Gz
Fi

$cmdDir/trcFltr. Py $1 $trcDir $3 $board $5 $trcType $7 to $version

  • Related