http://www.linuxquestions.org/questions/linux-newbie-8/how-to-create-a-batch-file-in-linux-608655/
That link has an example i used for my school project at least. Maybe you can use it.
Comment has been collapsed.
i even cannot type my username and password in steam linux client...
Comment has been collapsed.
Make sure you update ubuntu with the latest patches. I had the same problem until I updated.
Comment has been collapsed.
Running Windows 7 and I can't remember it ever crashing except when my old video card started overheating due to a broken fan.
Comment has been collapsed.
To give you some help that will actually help you: You have to learn how to make it (programming). You have to make your own bash program.
http://www.tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html
Not impossible, but requires some time.
Comment has been collapsed.
Off the top of my head, the .bat file:
....................
@ECHO OFF
START steamchat
TIMEOUT 1
START steamchat2
....................
would be equivalent to:
....................
steamchat&
sleep 1
steamchat2&
....................
@echo off is unnecessary because echoing is off by default on the bourne/bash shell. sleep is equivalent to timeout and ending a command in & has a similar effect to start.
Comment has been collapsed.
Wait... auto join the steam chat rooms in Windows?
Comment has been collapsed.
Didn't see this until now, I was sad when I saw "solved" :( Helping people with code problems is always fun, sad times.
Comment has been collapsed.
192 Comments - Last post 8 minutes ago by Golwar
318 Comments - Last post 16 minutes ago by Gamy7
31 Comments - Last post 52 minutes ago by EloyOn
27 Comments - Last post 53 minutes ago by FateOfOne
366 Comments - Last post 1 hour ago by Aliaxi
26 Comments - Last post 1 hour ago by Chris76de
25 Comments - Last post 2 hours ago by SupportForFun
55 Comments - Last post 38 seconds ago by Moony1986
68 Comments - Last post 6 minutes ago by zevnda
600 Comments - Last post 28 minutes ago by ExcelElmira
276 Comments - Last post 46 minutes ago by SlappyBag
623 Comments - Last post 46 minutes ago by Prosac
132 Comments - Last post 51 minutes ago by reigifts
3 Comments - Last post 53 minutes ago by mhetralla
and I can't seem to find a good way to auto join the steam chat rooms. In Windows, all I had to do is make a bat file with the following lines:
@ECHO OFF
START steamchat(not real chat number)
TIMEOUT 1
START steamchat2(not real chat number again)
My question is how can I make a Linux sh file with similar functionality to that of the Windows bat file? All comments are welcome.
EDIT: I nearly forgot the giveaway here.
Now this thread will be left open until the giveaway ends.
Before I forget, thank you bestduck for the solution.
Comment has been collapsed.