Difference between revisions of "User:Colin"

From AMule Project FAQ
Jump to: navigation, search
(+ sf)
(+ hirnriss.net)
 
(8 intermediate revisions by 6 users not shown)
Line 8: Line 8:
 
* reorganized [[AMuleWeb]] and rewrote the intro
 
* reorganized [[AMuleWeb]] and rewrote the intro
 
* expanded [[AMuleCMD]]
 
* expanded [[AMuleCMD]]
 +
* complained about the CVS flag, just to find out Kry can be a sarcastic condescending son of a bitch.
  
 
and other smaller fixes elsewhere...
 
and other smaller fixes elsewhere...
  
----
+
---
  
Here is a simple script to remove the obligatory command-line parameter you need to use to run aMule CVS:
+
I keep forgetting where this is: [http://www.hirnriss.net/?area=cvs daily CVS snapshot]
  
<pre>
+
---
/*bin/true;exec rexx "$0" "$@";exit # REXX */
+
  
/* --------- amuleCVSfx --------- */
+
== amuleCVSfx ==
  
/*
+
Here is a simple script to remove the obligatory command-line parameter you need to use to run aMule CV. Run it in the ../amule-cvs directory. It will make a backup of the original file.
  run this script in ../amule-cvs
+
  It will modify src/amule.cpp and save the  
+
  original at src/amule.cpp~
+
*/
+
  
FileIn = "src/amule.cpp"
+
<pre>
FileOut = "_tmp.tmp"
+
#!/bin/bash
Found   = 0
+
FileIn=src/amule.cpp
 +
FileOut=_^$$.tmp
 +
[ -e $FileOut ] && rm -f $FileOut
 +
awk < "$FileIn" > "$FileOut" '
 +
Found < 1 && /.!cmdline\.Found/ {
 +
        n = 6
 +
print "//      ------ Commented out by amuleCVSfx ------"
 +
Found = 1
 +
  }
 +
n > 0 {
 +
        $0 = "// " $0
 +
        n--
 +
        }
 +
{print}'
 +
mv -f $FileIn $FileIn~  2>&1
 +
mv -f $FileOut $FileIn  2>&1
 +
# end
  
do while lines(FileIn) > 0
 
OneLine = lineIn(FileIn)
 
if pos("!cmdline.Found",OneLine) > 1 & Found <> 1 then
 
do
 
call LineOut FileOut, "// ------ Commented out by amuleCVSfx ------ "
 
call LineOut FileOut, "//" OneLine
 
do i = 0 to 4
 
OneLine = lineIn(FileIn)
 
call LineOut FileOut, "//" OneLine
 
i = i + 1
 
end
 
Found = 1
 
    end
 
else
 
call LineOut FileOut, OneLine
 
end
 
if Found = 1 then
 
do
 
"mv -f"  FileIn FileIn || '~'  "2>&1"
 
"mv -f"  FileOut FileIn  "2>&1"
 
say "Fixed!"
 
end
 
else
 
do
 
say "Not found"
 
"rm -f" FileOut
 
end
 
return
 
 
</pre>
 
</pre>
  
You need to run it in the "amule-cvs" directory before issuing the "make" command.
+
 
 
+
You can view the changes using diff:
It is written in '''Rexx''', so you will need to have a Rexx interpreter on your system to run it. To install Rexx in Fedora, type
+
<pre>
"yum install oorexx". For Ubuntu, type "apt-get install rexx-regina". Other distros probably have Rexx in their repositories under one name or another. Or you can download the source in various forms from sourceforge: [http://sourceforge.net/project/showfiles.php?group_id=119701]
+
$ diff --side-by-side --suppress-common-lines src/amule.cpp src/amule.cpp~
 
+
</pre>
I originally wrote it as a shell script, but file I/O works much better in Rexx, which is designed for this kind of thing.
+

Latest revision as of 00:43, 8 March 2008

Satisfied amule user since September 2004.


I am also known as ezeltje in the forum (ezel means "mule" in Dutch, in case anyone is wondering).

Things I have done there:

  • created the Events pages with the example script
  • reorganized AMuleWeb and rewrote the intro
  • expanded AMuleCMD
  • complained about the CVS flag, just to find out Kry can be a sarcastic condescending son of a bitch.

and other smaller fixes elsewhere...

---

I keep forgetting where this is: daily CVS snapshot

---

amuleCVSfx

Here is a simple script to remove the obligatory command-line parameter you need to use to run aMule CV. Run it in the ../amule-cvs directory. It will make a backup of the original file.

#!/bin/bash
FileIn=src/amule.cpp
FileOut=_^$$.tmp
[ -e $FileOut ] && rm -f $FileOut
awk < "$FileIn" > "$FileOut" '	
	Found < 1 && /.!cmdline\.Found/ {
        n = 6
	print "//      ------ Commented out by amuleCVSfx ------"
	Found = 1
  	}
	n > 0 {
        $0 = "// " $0
        n--	
        }
{print}'
mv -f $FileIn $FileIn~  2>&1
mv -f $FileOut $FileIn  2>&1
# end


You can view the changes using diff:

$ diff --side-by-side --suppress-common-lines src/amule.cpp src/amule.cpp~