Tagged Questions
-3
votes
1answer
38 views
Bash - unzip: command not found [closed]
I am trying to unzip the file in particular folder and i am getting a "unzip command not found" error.
I am using Cygdrive to run my bash script
#!/bin/bash
for dir in ./"$WORKING"/*
do
unzip ...
2
votes
2answers
53 views
Using a variable to define a path
#!/bin/bash
SOURCE="/C/MSDFFiles/IPFiles/Source"
WORKING="/C/MSDFiles/IPFiles/Working"
rm -rf ./Working/*
cp "$SOURCE/"* "$WORKING/" 2> /dev/null
echo "DONE"
I am trying to copy all the files ...
0
votes
0answers
20 views
How implement a bast wait for a specific file to be closed from write mode under windows?
I have a bash script run under Windows and I do want to wait until a specific file is not open for write anymore.
Does anyone know a way to implement this in bash under cygwin, without installing ...
0
votes
1answer
35 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 ...
-1
votes
0answers
69 views
Default Shell in Cygwin cmd.exe [closed]
I am trying to set up an SSH daemon on my windows box using Cygwin. So far, I've gotten it to work in that I can log in remotely, but I am having a small issue.
In my passwd file, I have the last ...
1
vote
3answers
65 views
how do i set JAVA_HOME in bash?
my host system is windows 7
I am trying to get this to work in CYGWIN.
I need to set an environment variable called JAVA_HOME to be c/program files (x86)/java/jre7
here's what i tried:
$myjava=cat ...
1
vote
2answers
79 views
Set shell's working directory to the current file opened in vim
I am using Windows gVim and I am trying to invoke commands to run on cygwin's bash. It is working, but the working directory is set to $HOME every time. Would it possible to set to the current file's ...
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 ...
0
votes
1answer
33 views
reformating a text file
I've looked for existing answers, but am at a loss.
I need to take a plain text file:
1 - round decimals to tenths
2 - last group of numbers need to be four characters long, using zero to fill
3 - ...
1
vote
2answers
196 views
Cygwin Bash from Windows Cmd Not Running Executable
I have a program I've compiled in cygwin, that I am trying to call from a batch file a la:
D:\cygwin\bin\bash --login -i C:/ILS/trunk/NAVAID/test.exe
But I am getting the error:
bash: ...
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 ...
1
vote
2answers
146 views
cygwin clearscreen from bash
I want to clearscreen from bash in a cygwin terminal.
I have tried
cmd /c cls
echo -e "^V^L"
echo -e "\014"
None of these work - they all give a "linefeed". Pressing CTRL+L does work - but I want ...
1
vote
2answers
107 views
Slow load time of bash in cygwin
At the moment bash takes about 2 seconds to load. I have ran bash with -x flag and I am seeing the output and it seems as though PATH is being loaded many times in cygwin. The funny thing is I use the ...
0
votes
3answers
196 views
cURL takes forever to do an FTP upload
I have written a longish deployment script in bash that I run under cygwin. If deploying to a remote server, the script will upload the resulting app to an FTP server using curl, like this:
if [ ...
0
votes
1answer
32 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
0answers
96 views
Cygwin bash 'Cannot allocate memory' error
I have kind of a bizarre problem. I have a directory on a network share that contains the cygwin binaries. This cygwin dir used to be on a dell poweredge box and was mounted as a virtual directory ...
1
vote
3answers
151 views
Correct path usage in Cygwin : Difference between `python c:\somefile.py` & `python /cygdrive/c/somefile.py`
I'm using Django 1.5 & Python 2.7 on Windows + Cygwin. The following command gives me an error in bash shell
$ python /cygdrive/c/Python27/Lib/site-packages/django/bin/django-admin.py
Error:
...
4
votes
4answers
309 views
/dev/stdin with herestring
I would like a Bash script that can take input from a file or stdin, much like grep, for example
$ cat hw.txt
Hello world
$ grep wor hw.txt
Hello world
$ echo 'Hello world' | grep wor
Hello world
...
1
vote
1answer
92 views
How to get the exit code from a bash script invoked with winApi CreateProcess?
I'm using CreateProcess to invoke a bash script via Cygwin's bash.exe. The script runs fine, and I'm even able to redirect stdout and stderr to display within my own window. The only problem is that I ...
0
votes
2answers
224 views
Can I execute a .SH file in Windows Task Scheduler?
The .sh script is tested and working in cygwin, but now I want to Windows to automatically run it each hour.
The file has executable permissions and now I run it like this inside the cygwin terminal:
...
4
votes
1answer
109 views
Vim: Portable way to edit “[1]” when “1” exists
So, I want to edit the file [1]. Problem is, I also have a file called 1. I also use cygwin and its bash shell, win32 cmd and Linux. Sometimes I use cygwin's vim, and sometimes I use the win32 vim and ...
0
votes
1answer
95 views
Cygwin not executing .bashrc after Heroku Toolbelt Windows install
After installing Heroku Toolbelt, Cygwin is no longer executing .bashrc How do I fix this?
This heroku/toolbelt issue on github Creates/overwrites ENV['HOME'] on Windows, which breaks Cygwin says to
...
0
votes
0answers
70 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
0answers
19 views
itcl compilation with cgywin
I am trying to compile
iTcl and iTk with Cygwin. I am giving command through batch.
@CALL bash -c "cd %TCL_WORK_HOME%/src/3rdparty; ./buildItclItk %TCL_WORK_HOME%"
but it is showing
bash: ...
1
vote
4answers
85 views
getting counts per username of the amount of files on which they were the last modifier
I would like to get the counts per user name of how many files they edited (were the last user in editing that file) in an entire directory structure in the last 45 days.
Here's my desired output:
...
0
votes
1answer
146 views
Windows + Cygwin + Single Line If Else + Puppet
So I have a single line bash command that checks if a directory exists. If it does, it git pulls, if it doesn't, it clones the repository. I am running a Cygwin on my Windows box and when I run this ...
1
vote
0answers
67 views
Configure Eclipse to use bash login shell for Cygwin toolchain
I have a custom Makefile project in Eclipse and although the build does get run in a Cygwin shell... it does not seem to be a login shell (bash --login) as it doesn't set my environment variables ...
1
vote
2answers
87 views
Bash: How to Keep Restarting a Windows Cmd Prompt
Cygwin's bash is often preferable to Window's cmd command shell, so we use it to setup our environments before spawning a windows shell. However, halting execution of a running process in this ...
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
3answers
734 views
running bash script in cygwin on windows 7
I am trying to run the below bash script in cygwin on windows 7
REPEATTIMES="$1"
if [ $# = 0 ]; then
echo "Usage: fetch topN repeatTimes"
exit 1
fi
for (( i=1; i<=$REPEATTIMES; i++ ))
...
0
votes
2answers
262 views
How to open .bashrc in Cygwin
When I try to compile my Android NDK program, it shows the following error:
Program "${SA}\android-ndk-r8\ndk-build.cmd" not found in PATH
(the value of the environment variable "SA" is C:)
I am ...
0
votes
0answers
59 views
How to make bash through Cygwin accept my username [closed]
So, I installed cygwin and a bunch of libraries, among them bash. I booted up a terminal afterwards, hoping to throw some commands at it and fool around, mostly for learning purposes. But since the ...
1
vote
1answer
98 views
awk scripts and backslashes
I am a new to Unix.
${AWK} '\!/^ / && \!/^-/ && \!/^</ && \!/^$/ {printf "%s,,N,N,N,,,,\n", $1}' ~/ozserver.txt
When I run the command like before, there's errorInfo printed ...
1
vote
2answers
49 views
Copy changed files, create a changeset and maintain directory structure
I want to copy just the files i've created/edited today into a separate directory "changeset" whilst maintaining their directory structure
I came up with the following script
cd ./myproject/
find ...
0
votes
3answers
60 views
Is there a way to tell unix expand command not to change line endings?
I'm using cygwin version of expand with bash shell.
When calling expand to replace all \t with (spaces) expand also changes all newline endings from \n to \r\n.
I'm using the following bash ...
0
votes
1answer
170 views
How to propagate windows environment variable for powershell run from cygwin
I have installed cygwin and I am about to execute a script written in powershell. I do it like this:
powershell "& ""C:\my\script.ps1"""
This works as expected, I have to do this that way ...
1
vote
4answers
300 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 ...
1
vote
2answers
237 views
cd(1) and variables with spaces (cygwin)
I've been having quite an unusual problem. In my .bashrc file, I have set a variable to a path name with spaces in it. I had a feeling this would cause problems, but I played around with setting an ...
1
vote
4answers
64 views
BASH script to count LOC
In all my source code files, I have a "header" of information at the top of each file that looks like this (example in Java):
/* Project: UVa Online Judge
* Filetype: Java Source Code File
* ...
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 ...
2
votes
1answer
177 views
Using bash calculator in a vim script - strange behaviour
Does anybody know why this works with bash calculator (bc) in vim:
echo system ("echo 3+5 \| dos2unix \| bc -l") ---> output: 8
echo system ("echo 3/5 \| dos2unix \| bc -l") ---> output: ...
1
vote
4answers
179 views
How can I alias 'gvim filename' to 'gvim filename &'
I want gvim to always open in a separate window and return the command prompt immediately. In other words I want
gvim filename
to be the same as
gvim filename &
it seems like I should be ...
2
votes
1answer
811 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 ...
0
votes
1answer
115 views
cygwin: timeout syntax always fails
With Cygwin, I tried to use "timeout" to make my script sleep for a few seconds.
But even when I did it according to its syntax it always asks me to try --help, meaning I gave the wrong forms.
Here ...
1
vote
2answers
289 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= ...
23
votes
1answer
700 views
How do I get accented letters to actually work on bash?
My bash installation on cygwin doesn't handle accented letters properly. I tried adding
set input-meta on # to accept 8-bit characters
set output-meta on # to show 8-bit characters
set ...
0
votes
3answers
1k views
Linux serial port listener and interpreter?
I'm using a serial device for a project, and what I'm trying to accomplish PC side, is listening for a command sent by the serial device, interpreting the query, running some code depending on the ...
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
85 views
eclipse terminal (cygwin?) save profile -> for example a new alias
I'm troubling with the terminal view of eclipse. I'm working on Win7 and want to create an alias in this terminal. Well, creating an alias is not hard, but keeping the alias after a restart doesn't ...
0
votes
2answers
79 views
readlink in cygwin
I do the most basic thing in every script
SCRIPT=`readlink -f ${0}`
HOME=`dirname $SCRIPT`
and, given $0 = C:\Users\dir\file, readlink gives me /cygdrive/c/CURRENT_DIRECTORY/C:\Users\dir\file ...

