Conversation
Notices
-
Any advice for finding files all files containing "£" (UK pound) on !linux ? Geany's built-in Grep usage is failing :(
Wednesday, 27-Oct-10 14:54:52 UTC from xmpp-
@warbo grep?
-
@warbo Maye some desktop search .. strigi/beagle etc.
-
@warbo: Greetz. Use a "for" loop: "for i in /path/*; do grep £ $i; echo "found in "$i"; done"
-
@warbo: er, disregard that last part about "found in $i", that bit's not quite right, but the rest of it will work.
-
@warbo: Aha! Skip the "for" loop: "grep -lir £ *". (the -r will make it recursive, do not do this unless you need to search subdirectories)
-
@fieldse Thanks for the help :) Unfortunately it's only returning images :( The £s are coming up as <A3> in less BTW
-