Tagged Questions
1
vote
2answers
27 views
Create files using grep and wildcards with input file
This should be a no-brainer, but apparently I have no brain today.
I have 50 20-gig logs that contain entries from multiple apps, one of which addes a transaction ID to its log lines. I have 42 ...
0
votes
0answers
28 views
Calling Cygwin from within R
I was trying to invoke Cygwin from within R with the following command:
shell("cd C:\\cygwin\\bin & bash --login -i testfile2.txt", intern = T)
Within Cygwin I tried to invoke another program ...
0
votes
1answer
34 views
Run .sh file from cygwin on windows 7
I am trying to run .sh file from cygwin on windows 7
My dumdb.sh file content
#!/bin/bash
for database in $(mysql -e "show databases"|awk -F " " '{print $1}') do
mysqldump -u root -h localhost ...
0
votes
0answers
11 views
Execute windows scripts from remote rundeck server
Installed Rundeck server in one Linux machine .
Tomcat is running in one windows7 machine .
Now i want stop and start tomcat in windows machine by creating job in Rundeck (Linux).
It is possible ..
...
0
votes
1answer
122 views
Cygwin -Windows Unable to initialize device PRN
I am executing shell scripts on windows command prompt by making bash as the default application to open .sh files. I am able to run any script without input parameters , but for those scripts with ...
1
vote
2answers
85 views
[: too many arguments on Cygwin Shell script
I inherited some shell scripts written to do automated performance testing without having any shell scripting knowledge. I skimmed through a few guides and played around with the language until I ...
2
votes
2answers
94 views
How can I echo to /dev/tty?
Is there a way to send something like an "end of data" after executing
echo "test" > /dev/tty1
in order to gain the "input cursor" back to "receiving" terminal (in this case tty1)?
Screenshot: ...
0
votes
1answer
89 views
Sending email through Cygwin
I have a written a shell script wherein I want to send an email through it. I am executing this script on windows through cygwin. I have installed email package on my machine. However, I am having a ...
1
vote
3answers
28 views
Putting links to scripts in my cygwin bin
I have made a few python scripts, but is there an easier way to run them? I am using cygwin.
python "C:\Users\Desk\Dropbox\scripts\wsort.py" > data11414_unsorted.txt < data11414_sorted.txt
I ...
0
votes
0answers
101 views
How to execute batch file in shell script?
I have a ".Sh" test script. After the completion of the execution of all the commands I need to run the ". Bat" file (". Bat" file simulate java console browser, which comes on a test site and makes a ...
1
vote
1answer
47 views
Can I use the environment variable %PROGRAMDATA%?
I type:
echo $USERPROFILE and get C:\Users\rob
echo $PROGRAMFILES and get C:\Program Files (x86)
echo $PROGRAMDATA and get nothing.
Under windows %PROGRAMDATA% evaluates to C:\ProgramData
Why are ...
0
votes
1answer
36 views
Executing grep on multiple find results
My question is rather similar to this one, except that I'm executing a grep search on multiple find queries. (I have to do this because I have to submit my command to the live servers, and I'd like to ...
0
votes
1answer
88 views
cygwin environment variables set in bat file
I need to set several environment variables that should be available in cygwin shell.
I tried running "c:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/amd64"/vcvars64.bat in ~/.bashrc. ...
0
votes
1answer
137 views
Cygwin Terminal: FTP Connection (Password Input doesn't end)
I'm using Cygwin shell to try to establish a TCP connection with a specific IP address.
After typing "ftp 'the ip address'"
I get prompted for the username/password.
When I enter the username and ...
0
votes
1answer
31 views
How to get disk details from cygwin for a non-english windows using diskpart
I have a scenario where there are windows OS in multiple languages... I need to get the disk details using a script, using diskpart in cygwin .. For english I use the following to get the details of ...
0
votes
1answer
75 views
How to detect script file vs executable in custom shell
stackoverflow! For a systems programming course, I built a custom shell, which I have been tweaking since the end of the assignment for the purpose of hopefully replacing bash and batch as my primary ...
0
votes
0answers
69 views
How can I manipulate Arabic or Urdu text with Cygwin or any other Unix-like system?
I am a beginner. I am using Cygwin. I need to manipulate Arabic and Urdu text files. Both language use the same script. The problem is that when I open Urdu text file in Cygwin, the text gets ...
0
votes
1answer
99 views
Execute git command from bash script interactively
I have a bash script that I'm executing from cygwin terminal.
Part of the script executes git clone on each repository listed in a file:
git clone ssh://me@example.net:29418/$1
Sometimes the git ...
0
votes
2answers
433 views
adb shell auto-complete under Windows 7
Regarding this post: adb shell auto-complete under Windows 7?
The owner's answer is: "Solved this problem by recompiling adb under cygwin. :)"
Unfortunately I can't send comments asking him how did ...
1
vote
1answer
426 views
unable to execute shell script in cygwin as a ksh script
So, first I very rarely touch shell scripts, we have another department who write them, so I have an understanding of writing them but no experience. However they all appear rather useless with my ...
1
vote
1answer
339 views
Environment variable not working in Cygwin
I have to run some shell scripts in Windows using Cygwin. I am able to achieve that using %BASH% --login -i "/cygdrive/d/script.sh", where %BASH% is an environment variable in Windows set to ...
0
votes
0answers
57 views
Don't allow the Backspace key kill the prompt string in the cygwin shell [closed]
In the Windows + emacs + cygwin, start the 'shell'. The backspace key always kills the prompt string.
The prompe string looks like this.
[James@my-PC packages]$
How can I avoid this?
-1
votes
1answer
138 views
run unix commands on ruby window
I have a shell script written by Unix commands, and now I want to run this script file (*.sh) on Ruby command prompt window. Anybody please guide me a solution ? many thanks.
1
vote
4answers
293 views
Cygwin bash: read file word by word
I want to read text file word by word. Problem: there are some words containing "/*". Such a word causes script to return files in root directory. I tried:
for word in $(< file)
do
printf ...
3
votes
0answers
72 views
How to programmatically detect available utilities in Linux or OS X [duplicate]
Possible Duplicate:
Find out if a command exists on POSIX system
How to find a usable executable file in bash
On the command line I'd type (e.g.) type vimdiff (or which vimdiff if type is ...
0
votes
1answer
146 views
Error in Cygwin for Moai Android Build
I'm following this tutorial set to set up Moai for Android porting. When I run
./make-host.sh –p com.gamefromscratch.moai
in Cygwin to build the Android host it returns an error of
build.sh: ...
3
votes
3answers
135 views
shell scripting checking python version
I have the following shell script to query the python version. It gives me an error stating "Integer expression expected" on the if-statement.
#!/bin/bash
PYTHON_VERSION=`python -c 'import sys; ...
2
votes
1answer
806 views
Bash set +x without it being printed
Does anyone know if we can say set +x in bash without it being printed:
set -x
command
set +x
traces
+ command
+ set +x
but it should just print
+ command
Bash is Version 4.1.10(4). This is ...
1
vote
2answers
286 views
$INPUT Ambiguous redirect
I wrote this script a while ago and it worked fine, but for some reason I am getting a "Ambiguous redirect" error message for line 11 in cygwin now.
#!/bin/bash
cd 'my/file/path'
INPUT= ...
1
vote
3answers
183 views
On W32 Emacs why does Ctrl-D in Cygwin or MinGW bash issues repeated EOFs?
I'm using W32 GNU Emacs 24.1.50.1 with Cygwin bash 3.2.51. I know that this combination is very troublesome (see EmacsWiki and Cygwin list). However the problem I want to solve now is not confined to ...
0
votes
0answers
94 views
Copying files over Microsoft DFS using Shell scripts
In my org, we run Windows 2008 servers, and in our dev environments, we run Windows 7. For whatever reason, we prefer to run all of our scripts in Cygwin as standard Shell scripts. (The run_me_once.sh ...
1
vote
2answers
258 views
shell commands not recognised when called through ANT
I am calling a shell script from ANT build.xml on a windows machine in which I have cygwin installed. The script is getting called and the initial echo statements are being executed in the script. But ...
1
vote
2answers
2k views
Shell script syntax error: unexpected end of line
I wrote a simple shell script to check for the existence of a xml file and if it exists, then rename an old xml file to be backup and then move the new xml file to where the old xml file was stored.
...
0
votes
0answers
24 views
call shell script from ant [duplicate]
Possible Duplicate:
Running a .cmd file from ANT
Is it possible to call a shell script from ant script on a windows machine by installing cygwin on it?
I have 2 shell scripts that need to ...
1
vote
1answer
297 views
how to pass a parameter containing & to a bat file from cygwin bash
Here's a simple bat file:
C:\temp>type a.bat
@echo off
rem try
echo %1
With some difficulty, I am able to pass a&b as parameter to it:
C:\temp>a.bat a&b
a
'b' is not recognized as an ...
0
votes
3answers
76 views
How to set the ant property “output.root” in shell?
I need to specify the ant property output.root from the Cygwin shell, as I'm unable to edit the build.xml. Currently, I am trying to export an environment variable, like
export ...
0
votes
1answer
401 views
AWK: Compare two CSV files
I have two CSV files and I want to compare them using AWK and generate a new file.
file1.csv:
"no","loc"
"abc121","C:/pro/in"
"abc122","C:/pro/abc"
"abc123","C:/pro/xyz"
"abc124","C:/pro/in"
...
0
votes
1answer
82 views
cygwin to compile math library
I try to compile a library with Cygwin, following instructions at http://matrixprogramming.com/2008/03/umfpack.
In section fetching and unpacking, I learn that I should use these Unix commands:
$ ...
2
votes
3answers
949 views
How do I get a shell script to continue copying files after one copy command stalls?
I'm running Cygwin on WinXP. I have written the following shell script to copy files from a network drive to a remote server ...
scp -P 9998 ...
0
votes
1answer
191 views
Display file name and creation time ONLY of all files in a directory tree
Host: Win 7
I have a product that I updated today (patched if you will). I would like to see specifically which files were added to the base installation directory tree.
The expected result ...
0
votes
0answers
89 views
Copy images from a set of text files into subdirectories
I have a folder with about 100 subfolders. In each of these subfolders, there are 4 text files and either 1 or 2 folders containing images and 4 currently empty folders corresponding to the 4 text ...
0
votes
1answer
149 views
tr command causes problems in cygwin bash.exe shell, but works in mintty.exe
I use Windows with cygwin. The following command should output the number of occurrences of '/' in the string "./bootstrp3.cab". It works when I use the mintty.exe shell and outputs "1":
echo ...
8
votes
2answers
7k views
Cgywin - '\r': command not found - .bashrc / .bash_profile
I have windows, using Cgywin, trying to set JAVA_HOME permanently through my .bashrc file.
.bashrc:
export PATH="$JAVA_HOME/bin:$PATH"
export JAVA_HOME=$JAVA_HOME:"/cygdrive/c/Program Files ...
0
votes
1answer
138 views
How to run a script at Cygwin shell exit?
In Cygwin, my .bash_profile looks like this:
nohup mintty &
exit
The mintty command fires up and processes all of my real startup stuff with .bashrc. What I'd like to do is have all ssh-agent ...
0
votes
1answer
169 views
bash, executable runs in commandline but not in script
Here's the deal. I've got cygwin installed in Win7 envionment. This is the sequence of things I would do in a command line and everything works,
File mpc.exe is a 64-bit executable created by Intel ...
1
vote
3answers
653 views
Cygwin error when doing if…then…fi - Bash script
I just started bash shell programming. I have installed Cygwin on my Windows 7 computer. I started writing a script using this tutorial. My script requires an argument to be passed to it, if it ...
2
votes
2answers
1k views
Running a bash shell script on Windows from within in Notepad++ using NppExec (and Cygwin)
I'm trying to reconstruct how to execute a bash shell .sh file on my Windows machine from within Notepad++ using NPPExec. (I've done this successfully before, but my HDD crashed and I don't recall how ...
0
votes
1answer
496 views
Setting an environment variable in Cygwin
I have been trying to setup a environment variable in Cygwin using the command export PRIMOSBASE=/directory/for/primosfiles.
And when i check the variable using the command echo $PRIMOSBASE it shows ...
0
votes
1answer
57 views
When to use .exe and when not?
I dont really understand whats going on and cant see the difference:
I'm downloaded the base64.exe for creating base64 text under windows. i copied it to C:\Windows\ because its in the %PATH% ...
0
votes
1answer
140 views
Cygwin and Netbeans: run on default Windows shell?
I'm using Netbeans with Cygwin correctly configured.
It compiles and run fine. The problem is that I can't run command like system("cls") because the shell that comes out is C:\cygwin\bin\sh.exe and ...

