Forum: IT Professionals' Lounge Aug 1st, 2008 |
| Replies: 2 Views: 1,105 What your asking is very probably against the terms of the licence of the software.
If you're wanting to 'test' on Vista as in try out the product on a new OS, consider contacting a spokesperson... |
Forum: IT Professionals' Lounge Sep 22nd, 2007 |
| Replies: 2 Views: 7,630 Quite alot if you want the windows forms to actually open from a page or link on a user's web browser. You'd have to either; convert the VB standalone application to an ActiveX application, and use... |
Forum: IT Professionals' Lounge Aug 15th, 2007 |
| Replies: 7 Views: 10,165 lol.. didn't think of that.
did you try the first one I posted? that shouldn't hit the same problem.. because grep is opened with one line of arguement at a time.
otherwise; try this one:
... |
Forum: IT Professionals' Lounge Aug 15th, 2007 |
| Replies: 7 Views: 10,165 Here's a simpler one in the same vein:
grep "some_string" `find some_folder -name "*.some_extension"`
i.e. grep "cerr" `find . -name "*.cpp"`
note backticks (`) rather than single quotes around... |
Forum: IT Professionals' Lounge Aug 14th, 2007 |
| Replies: 7 Views: 10,165 Try this; it relies on the 'find' command.
find . -name "*.php" -exec grep -H "some_string" {} \;
Which translates in english to.. search (find) in this folder (.) for files matching the filter (... |
Forum: IT Professionals' Lounge Aug 14th, 2007 |
| Replies: 7 Views: 10,165 grep -r --include=*.php "some_string" some_directory
works in GNU grep 2.5.1
post output of `grep --version` and `grep --help` if that doesn't work... there might be another way. |
Forum: IT Professionals' Lounge Jul 2nd, 2007 |
| Replies: 7 Views: 2,038 There is nothing specific about blogs that generates more traffic. Unless you have something interesting to say and enough interested people to visit frequently; a blog will generate no more or less... |
Forum: IT Professionals' Lounge May 24th, 2007 |
| Replies: 7 Views: 1,638 Your question needs more clarification; development of what, and maintenance of what:
#include <iostream.h>
int main(void)
{
std::cout << "Hello, world!";
}
That code cost more (time) to... |