0
votes
3answers
42 views

Batch file compare two folders return files that aren't in one folder

I'm trying to make a batch file that will compare two folders "core" and "custom" and return the names of the files that aren't in custom. So far I have this code, most of which is taken form another ...
-6
votes
0answers
26 views

how to use mv in linux with the “/” [migrated]

Guys what does this command do in linux? mv /foo /bzr
0
votes
2answers
26 views

Save input to a file

I'm building a command shell, and in this command shell I want to save every command i write to a file. I read commands Like this: BufferedReader console = new BufferedReader(new ...
0
votes
1answer
45 views

Batch File Echo a line contains % to a Text File

I'm adding the following line to a Batch file using: ECHO enter.php?login=%s&pass=%s >>textfile.txt the Output is coming as enter.php?login=s This is my first Batch file.
0
votes
3answers
41 views

Echo a command on screen

I would like to echo a command onto the screen. I'm making something of a tutorial for someone and I want to display the command that is going to be running when they press enter. For example, I have ...
0
votes
1answer
42 views

Fill in multiple arrays from command's output - Bash

I'm looking for the best way to fill in multiple arrays from command's output using Bash. The solution I figured out at this stage is: i=1 ls -al | while read line do # Separate columns ...
0
votes
3answers
133 views

Exec batch file not run with space in project folder

I have a simple problem but I don't know how to handle this. That is: I have a simple batch file that remove all file in the folder (for example). I can run it in anywhere but I want to exec it by a ...
-1
votes
1answer
28 views

How to properly compare two files with 1M+ rows? [closed]

I've two different files which aren't supposed to be the same, both with 1M+ (Excel can't handle them), CSV. What I need to achieve: Compare this two files, to tell wether there are duplicates or ...
0
votes
3answers
79 views

What is the Unix command to display all lines of a file with two certain strings

Basically, I have a file that I want to search and display only the lines that have the strings 'abc' and 'vhg'. What is the Unix command for this?
0
votes
2answers
41 views

linux command to empty all files of a directory [closed]

I´d like to empty all files from a directory. I´d tried this: find myFolderPath/* -exec cat /dev/null > {} ';' but it does not work. How can I do it? Thanks.
-5
votes
1answer
101 views

Search files and delete them via SSH [closed]

I would like to know which SSH command should I run to search for any file named error.log inside the whole server and delete them. Any file named error.log must be deleted.
3
votes
2answers
550 views

How do I open access database in C# using a file path from a command line argument?

I need to specify the file path of an access db as a command line argument and pass it to my C# program, which will open and perform operation on it. In the Command Prompt I type F:\\count which I ...
0
votes
0answers
116 views

Batch file to Execute a Command and Launch app [closed]

Can Someone Help me in Creating a Batch file to execute a command in Command prompt in a particular location and run another app at the same time! I want to a Application(VM) and a command ...
1
vote
1answer
162 views

I have to rename all file names with first word of their content in unix

I used this head -1 -q *.txt|awk '{print $1}' which prints first line of the content in a file. Now how to proceed with renaming the files?
0
votes
1answer
99 views

tar Linux command exluding subdirectories´ hierarchies (but including their files)

I have the folder a with two files (1,2), and the subfolder b with another two files (3,4). I ´d like to tar a with '1,2,3,4' files in the tar file, but not including b. (By default (tar cvf), b ...
0
votes
1answer
1k views

JAVA classpath pass file as command line argument

I have a program which is located in say $A430CLASS/com.airbus.adcsip.batch.GlobalReportBatch $A430CLASS is the path where my class file is present. i want to run it through shell script so i ...
2
votes
1answer
272 views

how to call shell commands from groovy correctly

i want to execute shell commands from my groovy script. I tested the following: "mkdir testdir".execute() and this just works fine. Now i wanted to make a file, write something to the file and ...
0
votes
1answer
106 views

open .java file in specified eclipse project from command line

--launcher.openFile opens file without assigning it to any project, so different features such as code assist don't work. I am actually trying to create a source file automatically and want to edit it ...
2
votes
3answers
338 views

Run Multiple PHP files using PHP Command Line or SSH

I have 137 php files i want to run them in one command (in parallel) not by sequence. But the problem is each file is taking 2-5 seconds. So i have tried to make a (.sh) file and put each line as : ...
1
vote
1answer
153 views

Show all files in directory and select the latest creation date one with windows command line

is there a way with windows command line to list all the files from a specific directory and then select the name of the file that has the newest creation date. Thank you
0
votes
1answer
824 views

How to use Windows Command Line to search for file, then create text document with location?

I'm writing my first batch file, and as I've never used Windows Command Line before, I'm running into some issues. Here's my scenario. I use this batch file on several images to install something. I ...
0
votes
1answer
1k views

execute batch file from powershell as administrator

I have a powershell script file, executed using a batch file [Runpowershell.bat]. the powershell script aslo contains code to execute one another batch file ,as below function RunPowershell { ...
0
votes
3answers
190 views

Delete pdf files in a folder using a batch file

I would like to run a batch (.bat containing DOS commands) that would clean my folder by deleting any pdf that is still there. How do you do that ?
8
votes
4answers
1k views

How commit all files except one with SVN

I want to commit all modified files except one using Subversion. So here is the scenario: $ svn st M file1 M file2 M file3 M file4 I can do something like this: svn ci -m "Commit 1" ...
-4
votes
3answers
884 views

Where is the source code of Linux Command “file” [closed]

I seek the coreutils-8.5.tar.xz and busybox-1.18.5.tar.bz2, but nothing is found. Help, thanks!!!
4
votes
3answers
697 views

Unix command line : How to get the total size of modified files in the last 30 days

I want to know how to get the total size of the modified files in the last 30 days. I have found this command who onlye give me the list of the modified files in the last 30 days. find . -name '*' ...
0
votes
1answer
298 views

one liner shell command for changing file creation date in windows

After hours of searching on the internet, I still have not come across any one liner command that could change the file creation date in windows. I know there are Win32 APIs that can do the job. I ...
0
votes
1answer
493 views

How to create a information saving batch file by input on the running batch file

So, what I would like to accomplish is to make a batch file with a login (username and password) where one would not have to go into the script (where all the commands are) to change the passwords and ...
1
vote
1answer
360 views

Some Copy command in windows to copy from current location to specified location

So, I have started with this: copy | dir /s /b | find "myFile" C:\Destination but the problem is that the destination is not visible in this command. It only sees the first part of the command up ...
0
votes
1answer
2k views

Batch file 'choice' command's errorlevel returns 0

I'm trying to create a batch file that performs different 'choice' command based on the version of Windows being executed on. The choice command's syntax is different between Windows 7 and Windows XP. ...
1
vote
1answer
913 views

Perforce P4 command line: How to find files from the depository?

In P4V, I can enter the directory in the "Search in:" field, enter file pattern such as "*.c" in the "Name contains:" field and hit "Find". How do I do that in a P4 (Windows DOS shell)command line or ...
0
votes
1answer
328 views

Copy only latest files in Command Prompt

I have two directories with the same files. On the source directory, I always make updates. Now I just want to copy the updated files from the source directory to the destination directory. So it ...
2
votes
2answers
123 views

How to generate same type of graphs using the previously written commands for a few hundred similar data sets?

I have a few hundred of data sets which are within one data file, I need to first of all take the subsets of each data set, and I've written commands to generate a graph and csv file. Then I want to ...
2
votes
4answers
761 views

Trouble calling batch file from Java program

Everything I read says that the only way to call a batch file from within a java program is to do something like this: Process p = Runtime.getRuntime().exec("cmd /c start batch.bat"); From what I ...
0
votes
3answers
172 views

Does running a batch file from java program destroy piping?

I'm trying to run a batch file from within my Java program, but I'm getting some strange behavior. Process p = Runtime.getRuntime().exec("cmd /c start temp.bat"); This usually runs okay, but I've ...
1
vote
1answer
89 views

batch command file windows

if there is any way to run notepad if something was copied and make it checking every 5 minutes? for %%F in (1 2 3 4 5 6 7 8) do ( xcopy /e e:\%%F f:\ )
0
votes
2answers
586 views

How do I copy multiple folders to another path with a batch file?

how to make it go through certain folders(ex. 1-8 on the drive E:) and their trees and copy them on F: in the batch file(my doesn't work): set drive=E: for %%a in (1,2,3,4,5,6,7,8) do ( set ...
1
vote
1answer
251 views

command line wisdom for 2 panel file manager user

Want to upgrade my file management productivity by replacing 2 panel file manager with command line (bash or cygwin). Can commandline give same speed? Please advise a guru way of how to do e.g. copy ...
2
votes
1answer
523 views

List duplicate files in a directory in Unix

Is there any unix commands that can display duplicate files in a particular directory.kindly let me know your comments.
0
votes
3answers
189 views

Check for file existence

I'm looking to write a script that will load up a file that has a bunch of directory/filenames in CSV format, and then output what files are not found. This is what I have so far: for /f "delims=, ...
0
votes
2answers
168 views

php exec command does not allow several files definition with { }

I need to do an exec command that applies to several files, but it's not working. I'm going to create an EXAMPLE to show this. Obviously, I don't need anything of this directory and I do the example ...
1
vote
3answers
190 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
2answers
573 views

BATCH input redirection operator

set a=file if exist "folder\%a%" ( set /p x= < "folder\%a%" echo %x% ) i've been writing batch files for a long time, but i don't get it why this code does not work. Im expecting the code to ...
0
votes
3answers
2k views

Why “@echo off” is not making a difference?

In a .bat file like this : @echo off start C:/my_test.exe Why the first line is making no difference ? I thought with "@echo off", it won't open the command window, but it still flashed and then ...
0
votes
2answers
1k views

Unix command to find non-ascii chars

I have a file 500MB of size. It has some non-ascii characters in it. I just want to find out those characters using Unix command. May it will be better to get the line numbers and position at each ...
3
votes
2answers
2k views

Unix command to copy last line of file to another file

Please provide a command to append an existing file by taking a last line of another file.
0
votes
1answer
757 views

UNIX replace particular line in file

I have file about 5.5GB of size. I want to view a particular line of the file. Lets say line number 100001 and I want to replace that line with my own texts. How to achieve this operation using Unix ...
1
vote
1answer
2k views

windows batch file with goto command not working

I have a problem with GOTO command and affiliated labels. Facts: Given a bunch of files from a folder (they are log errors) I need to open them and check if they contain a specific string. If yes ...
3
votes
4answers
1k views

Why do du and Perl's -s give different values for the file size?

Updated According to comments: I have outlog.txt file which contains multiple filenames, e.g: 2345_535_Dell&HP_3PAR_DEAL.txt, similarly there are many filename but not the actual folder where the ...
0
votes
1answer
89 views

I want to add commands (shell scripts etc.) to Eclpise Package Explorer or Navigator

I'm in desparate need for a functionallity I miss in Eclipse: Right click on a file in Navigator (or a resource in package explorer) and execute a command on it, like "chmod a-w". Google did not ...

1 2