EPiWiki.se  - EPiServer notes shared with others
 

With Cygwin

[Edit]
Shell command using the Cygwin GNU package

Find in files


List all unique files that include a specific string in all sub folders of current folder.

grep -ri "RemoteEvent" * | grep -v Binary | sed s/:.*// | uniq

Simple web load script


Script to execute a web page %t * %c times. The times all clients should be started are defined in (1,1,10) - (start, step,end). And the number of clients are defined in (11,1,20).

for /L %t in (1,1,10) do for /l %c in (11,1,20) do call "cmd /c start wget http://localhost/default.aspx"
Version author:
Mattias Lövström

EPiServer version

All