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.
47,479 Comments - Last post 3 hours ago by eeev
6 Comments - Last post 3 hours ago by Tronics
8 Comments - Last post 3 hours ago by DeliberateTaco
10 Comments - Last post 3 hours ago by jiggakills
595 Comments - Last post 4 hours ago by ShannonA81
22 Comments - Last post 5 hours ago by eeev
1,009 Comments - Last post 5 hours ago by MeguminShiro
61 Comments - Last post 6 minutes ago by FateOfOne
2 Comments - Last post 18 minutes ago by PossiblePsycho
74 Comments - Last post 37 minutes ago by Patxxv
1,302 Comments - Last post 1 hour ago by Eremeir
10,421 Comments - Last post 1 hour ago by Mortvie
56 Comments - Last post 1 hour ago by LisekChytrusek
30,925 Comments - Last post 1 hour ago by hoangmarcel
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.