0
votes
3answers
15 views
How can I make svn command line client to forget the login credentials on windows (sliksvn)?
After having checked out once the repository to a folder, the svn command line client remembers the username and password (along with the repository url?). So, 2 questions arise:
is there a way to …
0
votes
4answers
53 views
what’s an easy way to use hyphen named inputs in a console app (i.e. -S “myServerName”)?
I'd like my console app to use hyphen-named inputs, like so:
myApp -S "myServerName" -D "myDatabaseName"
instead of the usual:
myApp "myServerName" "myDatabaseName"
I think the first is more …
0
votes
5answers
93 views
How to reenter Vim after :! bash?
I'm slowing getting to know Vim and Bash shell scripting and am running into this issue:
When I'm running MacVim, I sometimes want to use the command line to compile whatever it is I'm working on (in …
1
vote
1answer
30 views
Read (unnamed) argument in console line
As ConsoleFx seems to be progressing too slow (bummer, it had much potential) and showing too many breaking changes every build, I decided to switch to Mono.Options for my commandline parsing needs.
…
0
votes
1answer
18 views
Run php from command line in 32-bit mode
Is it possible to tell php to run a script from the command line in 32-bit mode? I have a php script that uses an ODBC driver that is only works when PHP is run in 32-bit. Here is how I'm calling …
0
votes
5answers
151 views
Alternative to IDLE [closed]
Possible Duplicates:
What IDE to use for Python
What IDE would you recommend for Python development?
I do a lot of work in python, and one thing I have come to loathe is opening up IDLE …
0
votes
2answers
50 views
Linux: How do I delegate exotic commandline arguments using a script?
Hello!
I want to write a wrapper bash script, and to pass all arguments to a called program. I was very sure, that this works correctly:
#!/bin/sh
someProgam $@
But when passing exotic arguments …
0
votes
2answers
16 views
How do you get the playtime of an iTunes track with applescript?
I'm just starting to play around with Geektool and applescripting to make my mac desktop fun and I've run into a question I can't seem to find an answer to. How do you get the current song playtime …
0
votes
1answer
29 views
Run Xcode tools from the Terminal window
This is something really simple, but I can't seem to find the answer anywhere, and I'm new to both Mac and UNIX, which doesn't help.
I've installed Xcode on my mac, along with the iPhone SDK 3.2. …
0
votes
3answers
47 views
search through a range of directories bash script
Hi,
I have written (tried to) this small bash script for searching through a range of directories.
#!/bin/bash
shopt -s nullglob
for file in [ac]*/blarg
do
echo $file
done
This script …
4
votes
3answers
97 views
How can I determine if a script was called from the command line or as a cgi script?
I have a script that I wrote that can either be used on the command line or as a CGI script, and need to determine how the script was called so I can output a content-type header for web requests (and …
3
votes
6answers
82 views
Are there any good reference implementations available for command line implementations for embedded systems?
I am aware that this is nothing new and has been done several times. But I am looking for some reference implementation (or even just reference design) as a "best practices guide". We have a real-time …
0
votes
2answers
42 views
create word doc file from linux command line
I have some HTML files that I need to distribute in MS Word doc format (don't ask!). I can manually open each in OpenOffice and then save as a doc file. But I have quite a few files so I want to …
0
votes
4answers
41 views
Add Jar File to Buildpath in Windows Command Line
Hi
Im quite annoyed at having to ask this but I cant get it to work. Currently I have a project with:
5 Classes in the src/ folder
2 JARS named profiles.jar and
classifier.jar in the root …
6
votes
2answers
94 views
Huge performance decline when accessing object in associative PHP array
I'm seeing a huge performance decline in a (command line) PHP script, caused by a simple assignment (runtime increase from 0.8 ~ 0.9 seconds to 29.x seconds).
The script first fetches a lot of data …
