Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
7answers
378 views

A bash one-liner to change into the directory where some file is located

I often want to change to the directory where a particular executable is located. So I'd like something like cd `which python` to change into the directory where the python command is installed. ...
5
votes
2answers
135 views

Python analog of Unix 'which'

In *nix systems one can use which to find out the full path to a command. For example: $ which python /usr/bin/python or whereis to show all possible locations for a given command $ whereis ...
3
votes
3answers
113 views

Inverse of which

Am I missing something obvious here? It appears the inverse function of which is missing from base R (googling and even a search on SO for "R inverse which" returns a myriad of unrelated links)? ...
3
votes
2answers
383 views

Is there a Perl module that works similarly to the Unix “which” command?

I was on Perlmonks and found this great listing: http://www.perlmonks.org/?node_id=627015 But it was missing "which", the function that searches for an executable in all the directories in your ...
2
votes
4answers
145 views

'which' equivalent function in Python

I need to setup environment by running 'which abc' command. Is there python equivalent function for 'which' command? This is my code. cmd = ["which","abc"] p = subprocess.Popen(cmd, ...
2
votes
2answers
33 views

Which not displaying location of executible actually run

I have a version of SVN on my system in /usr/bin/svn. This is too old to use with some repositories so I compiled a newer version in /home/user/built/bin/svn which works fine. I added this to my PATH ...
2
votes
0answers
126 views

Is there a Perl equivalent of which? [closed]

Possible Duplicate: Is there a Perl module that works similarly to the Unix “which” command? I'm looking for an equivalent of which in Perl that would give me the full path to a ...
1
vote
2answers
45 views

which.min not working correctly inside sapply on data-frame?

Can anyone explain this strange behavior found when trying to use sapply and which.min to find the first lines inside a dataframe satisfying a condition? The dataframe is trApr; it's sorted by ...
1
vote
2answers
140 views

In bash, “which” gives an incorrect path - Python versions

Can anyone explain how python 2.6 could be getting run by default on my machine? It looks like python points to 2.7, so it seems like which isn't giving me correct information. ~> python ...
1
vote
5answers
101 views

which command equivalent in Python

I have the following code which i am using to check if the program class-dump exists on a system. The program only returns a blank. cmd = ["which","class-dump"] process = subprocess.Popen(cmd, ...
1
vote
1answer
22 views

Not sure what to program this in.. Windows/Web

I want to create a simple web app probably flash (don't have much experience in flash though). Is it possible with HTML5? It's quite simple and just want the easiest way of making it. Basically I ...
1
vote
2answers
68 views

How to retrieve global index while using ddply?

I am trying to find the best deal in terms of price/carat from the Diamonds dataset from the plyr package So I do new = ddply(diamonds, c("cut", "color", "clarity"), transform, ecart= ...
1
vote
3answers
98 views

How to pipe the output of the Linux which command into the Linux file command?

$ which file /usr/bin/file $ file /usr/bin/file /usr/bin/file: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped Why ...
1
vote
5answers
295 views

BASH script - How to get bash to check for the location of a file?

Hi I want my bash script to find where php is installed - this will be used on different linux servers, and some of them won't be able to use the which command. Anyway I need help with that second ...
1
vote
1answer
463 views

Wordpress or Code Ignitor?

As a quick background. I am a web developer. I tried to develop 10-15 of my domains. Due to lack of time/focus, none got anywhere - as such I decided to focus on two, and do them properly. In the ...
0
votes
2answers
61 views

Windows / Powershell version of the Unix 'which' Utility

The 'which' utility, when run with a parameter naming an executable, will tell you the first executable with that name it finds in your path, if found at all. This gives a good idea which version of ...
0
votes
1answer
31 views

jQuery : event.which returns different codes when a number is pressed from numpad and when from the numbers keys above alphabets

When I press 8 from the numbers present above the alphabets on the keyboard, event.which returns 56, but when I press 8 from the numpad given at the side, it returns 104 (ascii of 'h'). I was doing ...
0
votes
1answer
27 views

Why or how is it that is my path is not being respected MacOSX?

How is it possible that the binary executed 'by default' -- ie. the first one found in my path, as returned by the which command, is in fact not the binary actually being executed by default? (I'm ...
0
votes
0answers
45 views

Which language/technology for a (brand new) stand alone soap server? [closed]

I am going to be working with quickbooks web connector (similar to what Keith Palmer at consolibyte llc has done) and I am new to SOAP. I am trying to put my feelers out into there to discover which ...
0
votes
1answer
109 views

append list items to OL with jQuery

Initial list: <OL> <li> ... </li> <li> ... </li> <li> ... </li> </OL> <A> LINK </A> the link fires a ajax request which gets data ...
0
votes
1answer
117 views

how to find out if a shell command exists in cshell

I'm looking for a function that would return 1 if a shell command exists, and 0 otherwise I know there is the "which" command that returns the path of a command if it exists. It also says in the ...
0
votes
1answer
210 views

Running shell_exec('which java') in PHP return nothing

If I run which java from the command line I get the proper input (/usr/java/.../bin/java). However if I run it in a php script: <? echo 'java. ' . shell_exec('which java'); echo 'ls. ' . ...
-1
votes
1answer
46 views

Which is the best Method used for Sorting? [closed]

Possible Duplicate: What sort algorithm provides the best worst-case performance? Which is the best method that can be used to sort an Integer array?Is Quick Sort efficient? Some of the ...