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.
16,288 Comments - Last post 6 minutes ago by Xarliellon
36 Comments - Last post 19 minutes ago by WaxWorm
517 Comments - Last post 39 minutes ago by Marius11
372 Comments - Last post 41 minutes ago by Marius11
449 Comments - Last post 42 minutes ago by Marius11
55 Comments - Last post 2 hours ago by XfinityX
1,797 Comments - Last post 8 hours ago by MeguminShiro
44 Comments - Last post 15 seconds ago by Swordoffury
723 Comments - Last post 6 minutes ago by HowCanSheSlap
6,929 Comments - Last post 9 minutes ago by NeverOnline
105 Comments - Last post 10 minutes ago by MedinaRoscoe
35 Comments - Last post 32 minutes ago by Fitz10024
30 Comments - Last post 1 hour ago by Naitas
2 Comments - Last post 1 hour ago by ewoda
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.