Quote:
Originally posted by JoaoSobrinho
now i got another problem... i can acess internet by my Wireless Card (Intel Wireless 2100) whitch comes with the laptop. but i can access into the network of my University (see other computers) ... [/b]
|
Which one doesn't work?
Quote:
and another thing... can i make a file that run a line of code, like .bat in windows ?
|
Yes; it's called a shell script.
Create the file with the first line as
Then type the commands into the file exactly as you would at a command prompt.
Save the file, say to script.sh, then make it executable using
Code:
chmod a+rx script.sh
Then you can run the file just like any other command. NB: you will need to specify ./script.sh if the current working directory isn't in your PATH.