Results 1 to 10 of 24
how to make this script executable for windows....
#!/bin/bash
# destroy computer
until [ "$lalalalala" ]; do
echo "destroying computer ....please wait"
clear
echo "destroying computer ....please wait"
clear
echo ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 08-27-2006 #1
how to make...
how to make this script executable for windows....
#!/bin/bash
# destroy computer
until [ "$lalalalala" ]; do
echo "destroying computer ....please wait"
clear
echo "destroying computer ....please wait"
clear
echo "destroying computer ....please wait"
clear
echo "hahahahahahahahahahahah"
clear
echo "destroying computer ....please wait"
clear
echo "destroying computer ....please wait"
clear
echo "hohohohohohohohoh!#$%&/()?=)(/&%$E#W!#$%&/()=)(/&%$#!#$%&/()=)(/&%$#$%&/()"
clear
echo "destroying computer ....please wait"
clear
echo "fsdpkhjnpeoitjngrdkjhbčptn"
clear
echo "destroying computer ....please wait"
clear
echo "destroying computer ....please wait"
clear
echo "destroying computer ....please wait"
clear
echo "destroying computer ....please wait"
clear
done
- 08-27-2006 #2
You just need to start the computer, connect it to the internet and wait a few minutes ...

If you really want the script, a .bat should do itPut your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 08-28-2006 #3
You would need to translate it into a Batch script. Unfortunately, since Batch and Bash are completely different, and Batch is Windows-only, it is unlikely you'll get much help here.
Try Googling for some Batch tutorials.
- 08-28-2006 #4Unafortunately? If Bash would be equal to Batch, it would suck too much.
Originally Posted by Cabhan
"Don't think about the work, think about the benefit"
Leonardo Juszkiewicz
- 08-28-2006 #5Unfortunate for Batch, I mean
Originally Posted by X.Cyclop
.
- 08-28-2006 #6
i dont understand what is the need of this kinda script.... infinited loop....
<=== { casper } ===>It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 08-28-2006 #7
hi devils_casper
well here in slovenia that would be a good joke to sent files like that.but i needed that script executable for windows coz here 99.9% of people newer heard for diferent os like MS Windows.
thank you guys for your help
about batch...no way in not gonna lose time with suff for c**py windows...
- 08-28-2006 #8Linux User
- Join Date
- Aug 2006
- Posts
- 458
you could code what you want in a cross platform programming language, like perl/python/java etc.
Here's a Python script that does what you want
Code:import sys,os if sys.platform == "win32": clear = "cls" elif sys.platform == "linux": clear = "clear" def printdestroy(): print "destroying computer ....please wait" os.system(clear) while True: printdestroy() print "hahahahahahahahahahahah" os.system(clear) ..... ......
- 08-28-2006 #9
- 08-28-2006 #10Oh, ok.
Originally Posted by Cabhan
I think Java would be a nice choice, because anyone has JVM installed on his machine.you could code what you want in a cross platform programming language, like perl/python/java etc.
Here's a Python script that does what you want
With Perl/Python you'll need an interpreter.
"Don't think about the work, think about the benefit"
Leonardo Juszkiewicz


Reply With Quote
