Search found 2 matches

by Dingo
23 Dec 2019 02:13
Forum: DOS Batch Forum
Topic: Convert Linux script
Replies: 2
Views: 3361

Re: Convert Linux script

Thanks that works like a charm: I have an old laptop with windows 10 that does not have much space left so just need a script for that. I will also put this code on our forum for those that do not know anything about Linux. Thanks again. I have another script that I am trying to run and if I still c...
by Dingo
21 Dec 2019 23:51
Forum: DOS Batch Forum
Topic: Convert Linux script
Replies: 2
Views: 3361

Convert Linux script

I have a Linux script that I got to work on Ubuntu but I need the same script to run on Windows. The main bit from the Linus script is n=100; max=200; while [ "$n" -le "$max" ]; do echo "$passwd"> /usr/bin/multiboinc/BOINC_"$n"/gui_rpc_auth.cfg; echo "BOINC_$n $passwd"; n=`expr "$n" + 1`; done I hav...