hi there,
i'm looking for a way to import an existing xpo-export via command-line into ax2009 aot and afterwards compile just this imported xpo. google tells me how to compile the whole aot by commandline, which takes quite long.
so is there a way to import an xpo ( shared project ) and compile just these objects?
what possibilities ar...
i want to delete something from each line of file for example :-
i have the following path in file :
/var/lib/svn/repos/b1me/products/payone/generic/code/core/db/fs-type /var/lib/svn/repos/b1me/products/payone/generic/code/fees/db/fs-type /var/lib/svn/repos/b1me/products/payone/generic/code/merchantserver/db/fs-type
i want to do ...
i have a file contain list of path now i want to execute command on each line example :-
file name : rawabdeh
command : command
file contain:-
path/no/1/
path/no/2/
path/no/3/
i want to do the following :
command path/no/1/
command path/no/2/
command path/no/3/
...
How can I determine the current change set version that a local work folder has using the TFS command line clients? I dont want to check what the latest version on the server but how "old" a local work folder is.
"svn info" will print information about paths in your working copy, ie, revision and other info.
...
What is the best way (better performance) to read a specific line of a file? Currently, I'm using the following command line:
head -line_number file_name | tail -1
ps.: preferentially, using shell tools.
...
how i can add Add text at the beginning of each line?
for example:- i have file contain:-
/var/lib/svn/repos/b1me/products/payone/generic/code/core
/var/lib/svn/repos/b1me/products/payone/generic/code/fees
/var/lib/svn/repos/b1me/products/payone/generic/code/2ds
i want it to become:-
svn+ssh://svn.xxx.com.jo/var/lib/svn/repos/b1m...
how i can cancel the password of svn list .... when i execute svn list it is Requests the password twice... i need to execute it without password
...
how i can make svnlook tree view just 2 level ?
...
Hi,
I have a project in NetBeans6.9.1.
It works fine from inside the IDE.
But when I try to run the jar, that NetBeans has automatically created under the dist directory, I get a NoClassDefFoundError
for classes inside my project. What am I doing wrong? Should I be using Ant or something (don't know Ant)
In eclipse I do a "create runna...
I want to compare the total size of two directories dir1 and dir2 on different file-systems so that if diff -r dir1 dir2 returns 0 then the total sizes will be equal. The du command returns the disk usage, and its option --apparent-size doesn't solve the problem. I now use something like
find dir1 ! -type d |xargs wc -c |tail -1
to k...
How i can find out which is the latest revision number in the repository?
...
Hi everyone...
I'm trying to setup Opera to run in Kiosk Mode without using any command line switches on Windows XP.
Originally I had it working by using a desktop shortcut with about 5 or 6 command line switches tagged on the end of the path to the opera.exe such as: "C:\Program Files\Opera\opera.exe" -kioskmode -kioskresetstation -no...
Hello everyone,
I found this source code which is an application that will return a command prompt result with the given command. However, the string of the result is not being correctly outputed sometimes. You guys can try for yourself: Download Here
In the application, there is a "while" loop going on which looks at the StandardOutpu...
I'm trying to use Java's ProcessBuilder Class to execute a command that has a pipe in it. For example:
ls -l | grep foo
However, I get an error:
ls: |: no such file or directory
Followed by:
ls: grep: no such file or directory
Even though that command works perfectly from the command line, I can not get ProcessBuilder to execute ...
How can I pass a dictionary to a python script from another python script over the command line? I use subprocess to call the second script.
The options I've come to are:
I) Build a module to parse a dictionary from a string (more in-depth than I had hoped to go).
II) Use a temporary file to write a pickle, and pass the file's name as...
I am pretty sure I have tried everything, figured I would ask all the gurus on here.
Background:
I had an SVN repository on an old linux box.
I accessed this SVN repo with git-svn.
The system's hard drive crashed and the SVN repo was lost.
Question:
Since I have an entire backup of the SVN repository on my local machine through me usin...
Hi experts,
for my opensource project I'm looking for a library to create a interactive menu on command line interface. Prefer java 1.5 to run it on any win/linux/mac platform.
It would be nice this lib will use the Builder pattern.
Short specification:
Your are in my command line menu
1) create a new item
2) view the item
3) let to t...
I have a need, for a python script I'm creating, to first get just the PID of a process (based on its name) and then to get from that process, usings its PID, its time duration, which, from the printout below, would be "00:00:00"
root 5686 1 0 Sep23 ? 00:00:00 process-name
I am using this to get just the PID, by the p...
Hi,
I need to find all instances of 'filename.ext' on a linux system and see which ones contain the text 'lookingfor'.
Is there a set of linux command line operations that would work?
...
I'm writing command line output to a file and then want to open this file in notepad.
So I wrote something like the following (simplified example):
set logPath=log.txt
echo %date% %time% > %logPath%
notepad %logPath%
But the problem is that when the last command is run (notepad %logPath%), the file is not yet created (or the contents ...