10 More Discussions You Might Find Interesting
1. UNIX for Beginners Questions & Answers
This line is called in a windows batch file and I need to call the same 3 jars with Parms in a bash script.
cd "D:\ACDRIP\JARS"
java -cp ".\RIPError.jar;.\RIP31.jar;.\RIP31msg_en_US.jar" ResubmitErrors -Ahost -P185050
pause
Any ideas how to do this in Bash? (3 Replies)
Discussion started by: xgringo
3 Replies
2. UNIX for Beginners Questions & Answers
I am trying to use a batch file to automatically execute a bash script with no luck this far.
The batch script looks like this:
C:\Cygwin64\bin\bash test.sh
I have also tried this:
C:\Cygwin64\bin\bash "C:\Cygwin64\bin\test.sh"
Needless to say that the windows box has Cygwin... (7 Replies)
Discussion started by: Xterra
7 Replies
3. Shell Programming and Scripting
Hi All,
I have a small tool which is currently configured in batch scripts only. But my need is to run it on Linux platform, so I have been trying to convert a batch script to shell script.
below is the batch script:
@echo off
IF "%1"== "" GOTO ARGERR
REM UPDATE THESE PROPERTIES TO... (2 Replies)
Discussion started by: sukhdip
2 Replies
4. Shell Programming and Scripting
declare -i DEFINT=1
declare -i DEFDELAY=1
declare -i timeout=DEFTOUT
declare -i interval=DEFINT
declare -i delay=DEFDELAY
if (($# == 0 || interval <= 0)); then
printUsage
exit 1
fi
(
((t = timeout))
while ((t > 0)); do
sleep $interval
kill -0 $$ ||... (5 Replies)
Discussion started by: SkySmart
5 Replies
5. Shell Programming and Scripting
while converting batch file to shell script ...dis command is ther i dunno how to change...can anyone knws how to change into shell script
rm !(D:\temp\XX.txt) (3 Replies)
Discussion started by: monisha
3 Replies
6. Shell Programming and Scripting
Hello,
My Bash script is working but i dont know batch programing, anyone can help me?
I dont want use programs to do this task, i will use in many computers...
Bash:
My work until now... BATCH:
Thanks for help. (1 Reply)
Discussion started by: Rodrocha
1 Replies
7. Shell Programming and Scripting
Hi,
I put the necessary tftp commands into a batch file and I can run tftp by
$ tftp < tftpbatchscript
in bash command line and then successfully exit.
Now, I want to put a line which does the same thing above. However, when I put this line into a bash script, the lines below this line... (1 Reply)
Discussion started by: yildiz.a
1 Replies
8. Shell Programming and Scripting
Hi.
I am trying to write an sh script that will:
1. take each wav file in ~/Documents
2. convert each into mp3 format using "lame" encoder
3. save the new mp3 in ~/Documents/newmp3s.
It has to follow the 3 steps in this order for each wav file before taking the next file.
I tried a... (8 Replies)
Discussion started by: Kingzy
8 Replies
9. Shell Programming and Scripting
Hello Everyone!!!
I need some help with a shellscript to batch process a folder of files with the imagemagick convert -append/+append command. The folder contains some hundred or thousand of small images in .png format which I would like to join together in order of their filenames. The... (3 Replies)
Discussion started by: imtombi
3 Replies
10. UNIX for Dummies Questions & Answers
How can I convert a variable to uppercase like ksh, typeset -u $1 in bash? (1 Reply)
Discussion started by: stringdom
1 Replies