Batch file question


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Batch file question
# 1  
Old 08-24-2008
Batch file question

EDIT: Is this wrong thread?

Hi I am on an Apple Mac and I am trying to run this batch file on my Mac and was wondering if anyone could tell me what a script that will make this run and work on my Mac. I was hoping that you could tell me the script in the shell format?

So here's the batch file:

@echo off
COLOR 04
title Cunescape Client
java -Xmx1000m -cp .;Theme.jar Gui 0 0 lowmem members 32
pause

Can YOU turn it into a shell file? And by any chance, is there any freeware program that turns DOS scripts into shell scripts?

PS I am a noob at UNIX/LINUX. I posted it here because...Experts go here.

Thanks. Smilie

Last edited by Billy5555100; 08-24-2008 at 07:55 PM..
# 2  
Old 08-25-2008
Any One?

Anybody? Does this just take a while to do or what?
# 3  
Old 08-26-2008
Your question looks like a DOS batch file. It's not clear what it's supposed to do. The essential part is the java line, you can copy that to a file and insert a line above it which contains the text #!/bin/sh -- mark it as executable and go. This hardly counts as porting the DOS batch file but I don't think the other things it does are useful outside of DOS anyway.

It's not like you can post a badly specified problem here and expect somebody to have diagnosed and solved it two hours later. If you don't get an answer, it's usually because (1) your problem domain is unfamiliar to users of this site, (2) your question doesn't make much sense; or (3) your attitude towards the people who come here to help others dissuades them from helping you. Even so, give it a few days.
# 4  
Old 08-28-2008
It is a DOS batch file by the way.

And would the file look like this?

#!/bin/sh --java -Xmx1000m -cp .;Theme.jar Gui 0 0 lowmem members 32

Not that sure what you meant about that.
# 5  
Old 08-28-2008
Separate lines, e.g.

Code:
#!/bin/sh
java -Xmx1000m -cp '.;Theme.jar' Gui 0 0 lowmem members 32

To make it executable use chmod 755 filename. Note that I have added some quotes around .;Theme.jar because ; is a special character in Unix shell scripts.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Batch to Shell Question??

I know this is kindof a noob question, but Im trying to convert a simple batch file to shell, but Im new to shell scripting. What would the following be in shell script: setlocal set OK=N set CUR_DIR=%~dp0 set CURRENT_TIME=%TIME:~0, 1%%TIME:~1,1%%TIME:~3,2%%TIME:~6,2%%TIME:~9,2% ... (2 Replies)
Discussion started by: scrumx
2 Replies

2. Shell Programming and Scripting

Executing a batch of files within a shell script with option to refire the individual files in batch

Hello everyone. I am new to shell scripting and i am required to create a shell script, the purpose of which i will explain below. I am on a solaris server btw. Before delving into the requirements, i will give youse an overview of what is currently in place and its purpose. ... (2 Replies)
Discussion started by: goddevil
2 Replies

3. UNIX for Advanced & Expert Users

batch file

Hi all I am using tru64 Unix and I want a ready batch file which makes me to change all user passwords at the same time ,instead of changing everyone separately. Please could anyone help me to do that. bye. (1 Reply)
Discussion started by: ahmedbashir
1 Replies

4. Shell Programming and Scripting

Batch file to remove double quotes from a file

Hi I have to create a windows batch file which will read an input file and remove "double quotes" from each line of the file. For eg.If input file name is abcd.csv and contents is : "asasd,123123,213213,asd" "esfrf,dsfsdf,234324,sdfsdf" Then the batch file should remove "" from the... (11 Replies)
Discussion started by: akashtcs
11 Replies

5. UNIX for Dummies Questions & Answers

Telnet in batch file

hi how can i connect to a telnet session using the unix script... need to create a batch file which has to run daily. first it has to telnet to a IP then execute certain commands and log the session. thanks Aemu (1 Reply)
Discussion started by: aemunathan
1 Replies

6. UNIX for Advanced & Expert Users

rename the file in batch

In my dir there are files like a.xml b.xml abnc.xml 12.abc.xml 12.anc.sfoioi.xml I need to remove .xml from all the files Is there any direct way without using any for/do loop Right now i am using for file in * do ... (7 Replies)
Discussion started by: reldb
7 Replies

7. Programming

batch file

what is a command to call a batch file from a c++ program when called with the argument which is a text file, then how to print that text file on a printer. please help me with code if possible (3 Replies)
Discussion started by: ramneek
3 Replies

8. IP Networking

batch file

my requirment is i have to call a batch file from a c++ program that batch file is called with the argument as print.txt print.txt is a text file which should get printed on printer (any printer) when a batch file call is made 1) how to call a batch file in c++ 2) how to print the text... (1 Reply)
Discussion started by: ramneek
1 Replies

9. UNIX for Dummies Questions & Answers

Creating a batch file.

I'm very new to unix and for the most part make my way around but I need to know how to create a batch file that can be ran at scheduled time. The main function of the file will be to copy files to different locations then FTP to a different server. Please help. I you have an example that would be... (2 Replies)
Discussion started by: spotanddot
2 Replies
Login or Register to Ask a Question