[10:24] Hi, how do I convert .bat files to .sh for linux execution of java apps? [10:31] It's more complicated than that, sometimes. [10:31] For a simple .bat file that just has one line calling java, you might be able to just rename it. [10:32] For something more complex, you'd have change how variables are set, etc. [10:36] persia, where can I post the .bat file so you may have a look at it [10:37] paste.ubuntu.com, but realise that I may not be able to tell you the answer. [10:40] persia, there it is at http://paste.ubuntu.com/162076/ [10:41] That falls into the middle. [10:41] You'd have to convert all the set lines to shell variable assignments (and make sure the paths were useful in your context). [10:41] The echo command is the same (except is has to be lowercase). [10:42] And then use shell variable references in the last line. [10:42] I don't know if it will work, but that's how I'd convert it if I was trying. [10:43] persia, ok thanks let me try that