1
vote
5answers
82 views
ls command: how can I get a recursive full-path listing, one line per file?
How can I get ls to spit out a flat list of recursive one-per-line paths?
For example, I just want a flat listing of files with their full paths:
/home/dreftymac/.
/home/dreftyma …
1
vote
2answers
40 views
Find a UnorderedList <UL> control inside a master page from a content page in asp.net
Hai guys,
I want to find a UL control and then find a LI within that UL and assign a css class to that from a content page....
<ul id="mainMenu" runat="server" style="width:35 …
0
votes
1answer
17 views
BindingSource.Find Multiple Columns
Is it possible to use the Find method of a BindingSource on multiple columns?
For example, say I have a gridview displaying current pets; two comboboxes, cboPetType and cboGende …
1
vote
2answers
62 views
How can I run a curl command for each line of output from my Perl script?
I have a perl script that writes out an array filled with integers to stdout, each on a separate line. So I would get output like:
412
917
1
etc
What I would like to do is be a …
0
votes
5answers
60 views
Using grep to find files that doesn’t contain a given string pattern
I'm using the following command in my web application to find all files in the current directory that contain the string foo (leaving out svn directories).
find . -not -ipath '. …
6
votes
2answers
104 views
Don’t show uninteresting files in Emacs completion window
How do I prevent Emacs from showing me all the files I'm not interested in (such as ~ backup files, .pyc files, or .orig files) when I: C-x C-f TAB ?
It is working in one respect: …
1
vote
4answers
58 views
Using DISTINCT in a CakePHP find function
Hello,
I am writing a CakePHP 1.2 app. I have a list of people that I want the user to be able to filter on different fields. For each filterable field, I have a drop down list. …
1
vote
0answers
66 views
Find all files on server with 777 permissions [closed]
Hello,
I'm looking for a Linux command to go through all the directories on my server and find all files with 777 permission. The output would be a list of all those files with fu …
0
votes
8answers
87 views
JQuery select the next element
Hey,
I am trying to use JQuery to select the next element in a set of elements with the same class.
Here is the HTML setup:
<div class="sameClass selected">
<p>Tex …
1
vote
0answers
21 views
How to change out-of-focus text selection color in Xcode?
Okay, I'll bite.
I've got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible.
When I am doing a project search and iterating throu …
5
votes
1answer
121 views
How to search for file in subversion server?
Is there a way to search for a file in a subversion repository?
Something similar to Unix' find command, with which I can find the location of a file in a repository.
I know ther …
2
votes
4answers
126 views
Bash command to recursively list files but sorting by classification
I often use the excellent find program in Bash to list files with certain filters. For example, in a Subversion (SVN) working copy, I sometimes wish to recursively list all files b …
0
votes
1answer
58 views
Find and Add line in text file from batch
I would like to know if anyone can help me with this. I would like to search a text file for a certain line of text, add a new line under the specific line then add text to the new …
1
vote
2answers
75 views
Checking existence of a file given a directory format in perl
I am struggling with a method of walking a directory tree to check existence of a file in multiple directories. I am using Perl and I only have the ability to use File::Find as I a …
2
votes
3answers
73 views
How to execute a command with one parameter at a time in the *nix shell?
Some commands like svn log, for example will only take one input from the command line, so I can't say grep 'pattern' | svn log. It will only return the information for the first f …
