active questions tagged bash - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T01:53:15Zhttp://stackoverflow.com/feeds/tag/bashhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1865546/how-to-get-this-translatecontent-content-in-a-textfile1How to get $this->translate('Content') => Content in a TextfileMarc2009-12-08T08:36:40Z2009-12-09T00:29:01Z
<p>I am looking for a shell script which scans a direcotry and all its subdirectories for .php and .phtml files. Within these files, I am looking for $this->translate('') statements (also $this->view->translate('')) and I want to save the content of these statements in a textfile.</p>
<p>The problem is, that there are several different types of this statements:</p>
<ul>
<li>$this->translate('Single Quotes') // I need: Single Quotes</li>
<li>$this->translate("Double Quotes") // I need: Double Quotes</li>
<li>$this->translate('Single quotes with %1$s placeholders', $xy) // I need: Single quotes with %1$s placeholders</li>
<li>$this->translate("Double quotes with %1\$s", $xy) // I need: Dobule quotes with %1$s</li>
<li>$this->view->translate('With view') // I need: With view</li>
<li>$this->view->translate("With view 2") // I need: With view 2</li>
<li>$this->translate('Single Quotes with "Doubles"') // I need: Single Quotes with "Doubles"</li>
<li>$this->translate("Double Quotes with 'Singles') // I need: Double Quotes with 'Singles'</li>
</ul>
<p>I have already programmed a script and a guy from starmind.com sent me the following lines:</p>
<pre><code> echo -n > give_me_your_favorite_outfile_name.txt
for i in `find . -iname '*php' `
do
echo -n "Processing $i ..."
# echo " +++++++ from $i ++++++++" >> give_me_your_favorite_outfile_name.txt
cat $i | sed -n -e '/->translate(*/p' | sed -e 's/\(.*->translate(.\)\([a-z A-Z \d092\d039\d034]*\)\(.*\)/\2/g' | sed -e 's/\(.*\)\(\d039\)/\1/g' | sed -e 's/\(.*\)\(\d034\)/\1/g' >> give_me_your_favorite_outfile_name.txt
echo " done"
done
for i in `find . -iname '*phtml' `
do
echo -n "Processing $i ..."
# echo " +++++++ from $i ++++++++" >> give_me_your_favorite_outfile_name.txt
cat $i | sed -n -e '/->translate(*/p' | sed -e 's/\(.*->translate(.\)\([a-z A-Z \d092\d039\d034]*\)\(.*\)/\2/g' | sed -e 's/\(.*\)\(\d039\)/\1/g' | sed -e 's/\(.*\)\(\d034\)/\1/g' >> give_me_your_favorite_outfile_name.txt
echo " done"
done
</code></pre>
<p>Unfortunately, it does not cover all the above cases, especially the Quotes within Quotes cases. As I am not a shell expert at all and need that script for a verification process, I would be very happy to get help from you guys.</p>
<p>Important: It has to be written in Shell. A PHP Version exists.</p>
http://stackoverflow.com/questions/1865530/more-simple-math-help-in-bash0More simple math help in bash!vgm642009-12-08T08:33:34Z2009-12-08T22:10:35Z
<p>In the same thread as <a href="http://stackoverflow.com/questions/1850235/simple-math-statements-in-bash-in-a-for-loop">this question</a>, I am giving this another shot and ask SO to help address how I should take care of this problem. I'm writing a bash script which needs to perform the following:</p>
<ol>
<li>I have a circle in <code>x</code> and <code>y</code> with radius <code>r</code>.</li>
<li>I specify <code>resolution</code> which is the distance between points I'm checking.</li>
<li>I need to loop over x and y (from -r to r) and check if the current (x,y) is in the circle, but I loop over discrete <code>i</code> and <code>j</code> instead.</li>
<li>Then <code>i</code> and <code>j</code> need to go from <code>-r/resolution</code> to <code>+r/resolution</code>.</li>
<li>In the loop, what will need to happen is <code>echo "some_text i*resolution j*resolution 15.95 cm"</code> (note lack of <code>$</code>'s because I'm clueless). This output is what I'm really looking for.</li>
</ol>
<p>My best shot so far:</p>
<pre><code>r=40.5
resolution=2.5
end=$(echo "scale=0;$r/$resolution") | bc
for (( i=-end; i<=end; i++ ));do
for (( j=-end; j<=end; j++ ));do
x=$(echo "scale=5;$i*$resolution") | bc
y=$(echo "scale=5;$j*$resolution") | bc
if (( x*x + y*y <= r*r ));then <-- No, r*r will not work
echo "some_text i*resolution j*resolution 15.95 cm"
fi
done
done
</code></pre>
<p>I've had just about enough with bash and may look into ksh like was suggested by someone in my last question, but if anyone knows a proper way to execute this, please let me know! What ever the solution to this, it will set my future temperament towards bash scripting for sure.</p>
http://stackoverflow.com/questions/1861285/bash-shell-scripting-error-mydemo-mydemo-line-62-syntax-error-near-unexp1Bash Shell Scripting Error: "./myDemo ./myDemo: line 62: syntax error near unexpected token `done' ./myDemo: line 62: `" [Edited]에이바2009-12-07T16:55:22Z2009-12-08T20:15:49Z
<p>Could someone take a look at this code and find out what's wrong with it?</p>
<blockquote>
<p><strong>EDIT:</strong> I fixed the while statement error, however now when I run the
script some things still aren't
working correctly.</p>
<ol>
<li><p>It seems that in the b|B) switch statement</p>
<p><em>cp $file $file.bkup</em> doesn't
actually copy the file to file.bkup ?</p></li>
<li><p>In the a|A) switch statement </p></li>
</ol>
<p><em>ls "$directory"</em> doesn't print the directory listing for the user to see
?</p>
</blockquote>
<pre><code>#!/bin/bash
while $TRUE
do
echo " Select one of the following options:"
echo " d or D) Display today's date and time"
echo " l or L) List the contents of the present working directory"
echo " w or W) See who is logged in"
echo " p or P) Print the present working directory"
echo " a or A) List the contents of a specified directory"
echo " b or B) Create a backup copy of an ordinary file"
echo " q or Q) Quit this program"
echo " Enter your option and hit <Enter>: \c"
read option
case "$option" in
d|D) date
;;
l|L) ls pwd
;;
w|w) who
;;
p|P) pwd
;;
a|A) echo "Please specify the directory and hit <Enter>: \c"
read directory
if [ ! -d "$directory" ]
then
while [ ! -d "$directory" ]
do
echo "Usage: "$directory" must be a directory."
echo "Specify the directory and hit <Enter>: \c"
read directory
if [ "$directory" = "q" -o "Q" ]
then
exit 0
elif [ -d "$directory" ]
then
ls "$directory"
else
continue
fi
done
fi
;;
b|B) echo "Specify the ordinary file for backup and hit <Enter>: \c"
read file
if [ ! -f "$file" ]
then
while [ ! -f "$file" ]
do
echo "Usage: "$file" must be an ordinary file."
echo "Specify the ordinary file for backup and hit <Enter>: \c"
read file
if [ "$file" = "q" -o "Q" ]
then
exit 0
elif [ -f "$file" ]
then
cp $file $file.bkup
fi
done
fi
;;
q|Q) exit 0
;;
esac
echo
done
exit 0
</code></pre>
<p>Another thing... is there an editor that I can use to auto-parse code? I.e something similar to NetBeans?</p>
http://stackoverflow.com/questions/1841737/hashing-multiple-files-recursively1Hashing Multiple Files Recursively_ande_turner_2009-12-03T18:00:19Z2009-12-08T20:05:59Z
<blockquote>
<p><strong>Latest Update:</strong><br>
I've got a BASH Script as per the spec.<br>
A Python and a Perl solution have also been submitted, although I've only been able to run the Python one on my machine.
If anyone can comment on how I can avoid looking in hidden directories with my BASH Script, it would be much appreciated.</p>
</blockquote>
<p><br></p>
<p>Given a directory, I want to iterate through the directory and its sub-directories, and add a whirlpool hash into the non-hidden file's names. If the script is re-run it would would replace an old hash with a new one.</p>
<blockquote>
<p><code><filename>.<extension></code> ==> <code><filename>.<a-whirlpool-hash>.<extension></code></p>
<p><code><filename>.<old-hash>.<extension></code> ==> <code><filename>.<new-hash>.<extension></code></p>
</blockquote>
<h3>How would you do this?</h3>
<h3>Out of the all methods available to you, what makes your method most suitable?</h3>
<p><br></p>
<blockquote>
<h2>Current Whirlpool based Bash Script:</h2>
<p><br>
<strong>( Originally based on <a href="http://stackoverflow.com/questions/1841737/bash-hashing-multiple-files-recursively/1842134#1842134">Gordon Davisson's version</a> )</strong></p>
<pre><code>#!/bin/bash
find -x . -type f ! -name ".*" -print0 | while IFS="" read -r -d $'\000' file
do
basename="$(basename "${file}")"
hashless="$(echo ${basename} | sed -E 's/\.[a-z0-9]{128}\./\./')"
if [[ "${hashless}" != "${file}" ]]; then basename="${hashless}"; fi
prefix="${basename%.*}."
suffix=".${basename##*.}"
if [[ "${basename}." != "${prefix}" ]]; then
hashcode="$(echo $(whirlpooldeep -q "${file}"))"
new="$(dirname "${file}")/${prefix}${hashcode}${suffix}"
if [[ "${new}" != "${file}" ]]; then mv "${file}" "${new}"; fi
fi
done
</code></pre>
<p><strong>( works with GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin10.0) )</strong></p>
</blockquote>
http://stackoverflow.com/questions/1862510/how-can-the-last-commands-wall-time-be-put-in-the-bash-prompt5How can the last command's wall time be put in the Bash prompt?Mr Fooz2009-12-07T20:02:01Z2009-12-08T12:50:57Z
<p>Is there a way to embed the last command's elapsed wall time in a <a href="http://en.wikipedia.org/wiki/Bash" rel="nofollow">Bash</a> prompt? I'm hoping for something that would look like this:</p>
<pre><code>[last: 0s][/my/dir]$ sleep 10
[last: 10s][/my/dir]$
</code></pre>
<p><strong>Background</strong></p>
<p>I often run long data-crunching jobs and it's useful to know how long they've taken so I can estimate how long it will take for future jobs. For very regular tasks, I go ahead and record this information rigorously using appropriate logging techniques. For less-formal tasks, I'll just prepend the command with <code>time</code>. </p>
<p>It would be nice to automatically "time" every single interactive command and have the timing information printed in a few characters rather than 3 lines. </p>
http://stackoverflow.com/questions/1865344/bash-environment-variables-and-finding-installation-directories0Bash environment variables and finding installation directoriesWilliam2009-12-08T07:49:28Z2009-12-08T08:24:57Z
<p>I have a bash script that basically initializes an application and sets parameters. One of these parameters is the location to OpenOffice. Now OpenOffice doesn't set an environment variable when you install it.</p>
<p><strong>So my question is:</strong> What is the best method of finding the location of an application installed and caching that information so you don't have to do the i/o next time?</p>
<p>What I was thinking was simply running a find on /usr/ for the openoffice directory which has a specific file. When it's found store that directory in a environment variable and in this script check if the environment variable is set and is a directory, if so use it, if not search again.</p>
<p>This would allow the script to work without user interaction but also allow the user to set a path themselves (since it's an environment variable).</p>
<p>This seems like a "bad practice", so I'm hoping maybe someone else can give me the common way of getting information about a software install. If it helps, OpenOffice will most likely be installed using aptitude.</p>
<p>Thanks in advanced.</p>
http://stackoverflow.com/questions/714915/using-the-passwd-command-from-within-a-shell-script1using the passwd command from within a shell scriptJared2009-04-03T17:34:53Z2009-12-08T05:42:08Z
<p>I'm writing a shell script to automatically add a new user and update their password. I don't know how to get passwd to read from the shell script instead of interactively prompting me for the new password. My code is below.</p>
<pre>adduser $1
passwd $1
$2
$2</pre>
http://stackoverflow.com/questions/1859470/making-graphs-with-a-shell-script0making graphs with a shell scriptskazhy2009-12-07T11:38:24Z2009-12-07T17:07:14Z
<p>i need to make a graph with numeric values in a time period, the values represent online users in a web page.</p>
<p>the script will be exectued with cron every 30 mins and the needed html file will be downloaded with wget. but there are some yet unanswered questions & problems:</p>
<p>-i need to get just the numeric value from html code (but grep returns the whole line), how can I get only the numeric value? I can get the line with grep, it looks like this:</p>
<pre><code> Users online: 24 917 </div>
</code></pre>
<p>How can I get just the 24917?</p>
<p>-what would be easier? to generate .svg file with the graph, or save values in a .csv file (and generate graph with OOo or something similar). Maybe some other good ideas?</p>
<p>Thanks in advance,</p>
<p>-skazhy</p>
http://stackoverflow.com/questions/1858312/grep-search-strings-with-line-breaks1Grep search strings with line breaksVijay Dev2009-12-07T06:59:28Z2009-12-07T16:17:07Z
<p>How to use grep to output occurrences of the string 'export to excel' in the input files given below? Specifically, how to handle the line breaks that happen in between the search strings? Is there a switch in grep that can do this or some other command probably?</p>
<p>Input files:</p>
<p>File a.txt:</p>
<blockquote>
<p>blah blah ... export to<br>
excel ...<br>
blah blah..</p>
</blockquote>
<p>File b.txt:</p>
<blockquote>
<p>blah blah ... export to excel ...<br>
blah blah..</p>
</blockquote>
http://stackoverflow.com/questions/1842634/parse-date-in-bash2Parse Date in BashSteve2009-12-03T20:19:55Z2009-12-07T15:56:53Z
<p>I need to parse a date (format: YYYY-MM-DD hh:mm:ss) in bash. I'd like to end up with all fields (years, months, days, hours, minutes, seconds) in different variables.</p>
http://stackoverflow.com/questions/1854631/detecting-program-errors-in-bash-scripts0Detecting program errors in bash scripts?meder2009-12-06T07:22:11Z2009-12-07T15:34:30Z
<p>I'm trying to write my first semi advanced bash script that will take input in the form of a filename referring to an <code>avi</code> video, send it to <code>ffmpeg</code> to convert to a <code>mp4</code> (preserving the original name) and then hand it off to <code>MP4Box</code>.</p>
<p>The below is pretty much what I'm doing...</p>
<pre><code>#!/usr/bin/bash
ffmpeg -i $0 -acodec libfaac -ab 128k -ac 2 -vcodec libx264 -vpre hq -crf 22 -threads 0 ($0).mp4
MP4Box -inter 500 ($0).mp4
</code></pre>
<ul>
<li>Is there some sort of try/catch I can do for the first program invocation to make sure MP4Box gets workable input? </li>
<li>Should I even bother with error catching at all, should I instead rely on the programs themselves to do this for me?</li>
</ul>
http://stackoverflow.com/questions/1300620/find-all-files-in-a-directory-that-are-not-directories-themselves1Find all files in a directory that are not directories themselves.windfinder2009-08-19T15:16:25Z2009-12-07T11:11:37Z
<p>I am looking for a way to list all the files in a directory excluding directories themselves, and the files in those sub-directories.</p>
<p>So if I have:</p>
<pre><code>./test.log
./test2.log
./directory
./directory/file2
</code></pre>
<p>I want a command that returns: ./test.log ./test2.log and nothing else.</p>
http://stackoverflow.com/questions/1576/what-should-a-longtime-windows-user-know-when-starting-to-use-linux37What should a longtime Windows user know when starting to use Linux?Peter Coulton2008-08-04T20:54:29Z2009-12-07T11:01:45Z
<p>We've finally moved our websites to a decent <a href="http://www.simplehelix.com/" rel="nofollow">host</a>, and for the first time we have Shell Access.</p>
<p>I know very little about using Linux, I can navigate through the file system, read files with <a href="http://en.wikipedia.org/wiki/Vim%5F%28text%5Feditor%29" rel="nofollow">Vim</a> and I'm aware of the man command, and I have been able to work out solutions to problems as they show up (eventually), but I know I'm unaware of a lot.</p>
<p>Edit: We currently only use the host to hold our live sites, I'm sure that we use it more effectively, but I'm not sure where to start.</p>
<p>So with Web Development in mind:</p>
<ul>
<li>What are the essential commands that every Linux user should know about?</li>
<li>What are the most useful commands that I should look into?</li>
</ul>
http://stackoverflow.com/questions/1577347/best-tool-in-unix-for-viewing-large-files1Best tool in unix for viewing large filesunknown (yahoo)2009-10-16T10:38:41Z2009-12-07T11:00:51Z
<p>I am a novice in unix.
i am facing a problem in viewing big log files in unix using Vi tool.
could you please suggest the best tool for fast viewing of big files on unix.
Request you to post your own ways of viewing the big files on unix.
appreciate your help:)</p>
http://stackoverflow.com/questions/1850235/simple-math-statements-in-bash-in-a-for-loop0Simple math statements in bash in a for loop.vgm642009-12-04T23:03:18Z2009-12-07T00:45:28Z
<p>Hi. I'm quite new to bash scripting and usually avoid it all costs but I need to write a bash script to execute some simple things on a remote cluster. I'm having problems with a for loop that does the following:</p>
<pre><code>for i in {1..20}
do
for j in {1..20}
do
echo (i*i + j*j ) **.5 <--- Pseudo code!
done
done
</code></pre>
<p>Can you help me with this simple math? I've thrown <code>$</code>'s everywhere and can't write it properly. If you could help me understand how variables are named/assigned in bash for loops and the limitations of bash math interpretation (how do you do the square root?) I'd be very grateful. Thanks!</p>
http://stackoverflow.com/questions/1851172/bash-daemon-named-sh-or-sleep-not-the-filename1Bash Daemon Named "sh" or "sleep" not the filename....Andrew2009-12-05T05:04:10Z2009-12-05T19:23:48Z
<p>I have created a simple bash script, chmod +x, and successfully am running it as a background service. </p>
<p>But, the script is called "sh" or "sleep" or whatever command seems to be running at the time, not my script name, when I view a process list. </p>
<p>How do I name the process of my bash script so I can distinguish it? I want to be sure that I'm not running the script more than once. </p>
<p>I am very new to bash scripting... sorry if this is a dumb question. </p>
<p>I am using #!/bin/bash</p>
http://stackoverflow.com/questions/942824/how-to-investigate-ports-opened-by-a-certain-process-in-linux0how to investigate ports opened by a certain process in linux?Shore2009-06-03T02:36:04Z2009-12-05T17:26:02Z
<p>Suppose the PID of the process is already known</p>
http://stackoverflow.com/questions/1846383/how-can-this-src-vs-build-tree-timestamp-comparison-be-faster-bash0how can this src vs. build tree timestamp comparison be faster? (bash)13ren2009-12-04T11:28:12Z2009-12-05T03:55:13Z
<pre><code>for n in `cd src; find . -name "*.java"; cd -`;
do a=`echo $n | cut -d '.' -f2`;
if [[ src/$a.java -nt build/$a.class ]];
then echo src/$a.java;
fi;
done
</code></pre>
<p>It lists all the java files in the src tree; then for each one, it removes the suffix ".java" (<code>cut -d '.' -f2</code> because <code>find .</code> output is prefixed with <code>.</code>). It then uses <code>-nt</code> to test if the java file in the src tree is newer than the corresponding class file in the build tree; if it is newer, it is output. [javac can then use this to compile only the needed src files, instead of using <code>ant</code> or <code>make</code>]</p>
<p>The problem is that it is too slow, taking about 275ms. How to make it faster?</p>
<p>Or is there a faster way to do this in bash? I can't see how to do it with <code>find</code>, <code>diff</code>, <code>rsync</code> nor <code>make</code> (which doesn't seem to traverse trees automatically, and needs explicitly listed source files).</p>
http://stackoverflow.com/questions/1847195/python-bash-pipe1Python bash piperusiruboteju2009-12-04T14:15:17Z2009-12-04T23:28:58Z
<p>I want to pipe a python script's output to a bash script. What i did so far was i tried to use <code>os.popen()</code>, <code>sys.subprocess()</code>, and tried to give a pipe for an example</p>
<pre><code>os.popen('echo "P 1 1 591336 4927369 1 321 " | v.in.ascii -zn out=abcx format=standard --overwrite')
</code></pre>
<p>but this didn't work, the values <code>"591336"</code> and <code>"4927369"</code> are the variables which comes as the output of the python script. but when I do this or change the values manually by repeating the echo command and the pipe, it works (in bash).</p>
<pre><code>v.in.ascii -zn out=abcx format=standard --overwrite
</code></pre>
<p>the above part of the bash command is a part of Grass GIS</p>
<p>Can anyone help me!</p>
http://stackoverflow.com/questions/1849258/deleting-brackets-in-a-file-using-sed0deleting brackets in a file using sed Sharat Chandra2009-12-04T19:50:14Z2009-12-04T20:16:26Z
<p>Can anyone help me in deleting brackets in a file ?
here is my script ..</p>
<pre><code> #!/bin/bash
for file in fftw is_c mpi_tile pmb tau xhpl
do
for state in C0 C1 C2 C4
do
printf "${file}_${state}_v1.xls"
sed -e 's/\(//' ${file}_${state}_v1.xls
sed -e 's/\)//' ${file}_${state}_v1.xls
awk '{sum+=$3} ; END {print " ", sum/NR}' ${file}_${state}_v1.xls >> c-state-residency.xls
done
done
</code></pre>
http://stackoverflow.com/questions/1848415/remove-slash-from-the-end-of-a-variable1Remove slash from the end of a variableBurntime2009-12-04T17:20:10Z2009-12-04T17:32:51Z
<p>hi folks,</p>
<p>the bash auto completion make a / at the end of a directory how i can strip this out?</p>
<p>Thanks for hints.</p>
<pre><code>#!/bin/sh
target=$1
function backup(){
date=`date "+%y%m%d_%H%M%S"`
PWD=`pwd`
path=$PWD/$target
tar czf /tmp/$date$target.tar.gz $path
}
backup
</code></pre>
http://stackoverflow.com/questions/1844798/how-can-i-use-bash-to-parse-out-only-a-section-of-a-variable-with-different-delim0How can I use bash to parse out only a section of a variable with different delimiters?John2009-12-04T04:12:16Z2009-12-04T08:32:01Z
<p>I have a loop in a bash file to show me all of the files in a directory, each as its own variable. I need to take that variable (filename) and parse out only a section of it.</p>
<p>Example:</p>
<p>92378478234978ehbWHATIWANT#98712398712398723</p>
<p>Now, assuming "ehb" and the pound symbol never change, how can I just capture WHATIWANT into its own variable?</p>
<p><hr></p>
<p>So far I have:</p>
<pre><code>#!/bin/bash
for FILENAME in `dir -d *` ; do
done
</code></pre>
<p><hr></p>
http://stackoverflow.com/questions/1844457/using-xvkbd-to-read-a-barcode-how-to-disable-enter-key0Using xvkbd to read a barcode. How to disable Enter key?Natim2009-12-04T02:09:30Z2009-12-04T02:16:30Z
<p>Hello,</p>
<p>I am using zbarcam to read barcode from a webcam in my webapps.
But, since zbarcam display a \n at the end, my form is submit.</p>
<p>Here is what I use :</p>
<p><strong>read_one.py</strong></p>
<pre><code>#!/usr/bin/python
from sys import argv
import zbar
import webbrowser
# create a Processor
proc = zbar.Processor()
# configure the Processor
proc.parse_config('enable')
# initialize the Processor
device = '/dev/video0'
if len(argv) > 1:
device = argv[1]
proc.init(device)
# enable the preview window
proc.visible = True
# read at least one barcode (or until window closed)
proc.process_one()
# hide the preview window
proc.visible = False
# extract results
for symbol in proc.results:
# do something useful with results
print symbol.data
</code></pre>
<p><strong>keyboard.sh</strong></p>
<pre><code>python read_one.py | xvkbd -file -
</code></pre>
<p>How can I either remove the '\n' before sending the barcode to xvkbd or disable the enter key in xvkbd ?</p>
http://stackoverflow.com/questions/1842212/looping-1-2-and-3-numbers0looping 1, 2 and 3 numbersjbjuly2009-12-03T19:13:30Z2009-12-03T20:17:12Z
<p>supposed to be I have 3 filenames</p>
<p>file-00
file-01
file-02</p>
<p>I'm trying to replicate those files to file-03, file-04, file-05...file-98, file-99, file-100 based on the original files.</p>
<p>So in bash I do</p>
<pre><code>#!/bin/bash
x=0
y=1
z=2
for i in $(seq 0 100);
do
cp file-00 file-$((x=x+2));
cp file-01 file-$((y=y+3));
cp file-02 file=$((z=z+4));
done
</code></pre>
<p>but this doesn't work and it gives me the following output. which I only need a sequence of 100 numbers.</p>
<pre><code>x=2
y=3
z=4
x=4
y=6
z=8
x=6
y=9
z=12
x=8
y=12
z=16
x=10
y=15
z=20
x=12
y=18
z=24
x=14
y=21
z=28
x=16
y=24
z=32
x=18
y=27
z=36
x=20
y=30
z=40
x=22
y=33
z=44
x=24
y=36
z=48
x=26
y=39
z=52
x=28
y=42
z=56
x=30
y=45
z=60
x=32
y=48
z=64
x=34
y=51
z=68
x=36
y=54
z=72
x=38
y=57
z=76
x=40
y=60
z=80
x=42
y=63
z=84
x=44
y=66
z=88
x=46
y=69
z=92
x=48
y=72
z=96
x=50
y=75
z=100
x=52
y=78
z=104
x=54
y=81
z=108
x=56
y=84
z=112
x=58
y=87
z=116
x=60
y=90
z=120
x=62
y=93
z=124
x=64
y=96
z=128
x=66
y=99
z=132
x=68
y=102
z=136
x=70
y=105
z=140
x=72
y=108
z=144
x=74
y=111
z=148
x=76
y=114
z=152
x=78
y=117
z=156
x=80
y=120
z=160
x=82
y=123
z=164
x=84
y=126
z=168
x=86
y=129
z=172
x=88
y=132
z=176
x=90
y=135
z=180
x=92
y=138
z=184
x=94
y=141
z=188
x=96
y=144
z=192
x=98
y=147
z=196
x=100
y=150
z=200
x=102
y=153
z=204
x=104
y=156
z=208
x=106
y=159
z=212
x=108
y=162
z=216
x=110
y=165
z=220
x=112
y=168
z=224
x=114
y=171
z=228
x=116
y=174
z=232
x=118
y=177
z=236
x=120
y=180
z=240
x=122
y=183
z=244
x=124
y=186
z=248
x=126
y=189
z=252
x=128
y=192
z=256
x=130
y=195
z=260
x=132
y=198
z=264
x=134
y=201
z=268
x=136
y=204
z=272
x=138
y=207
z=276
x=140
y=210
z=280
x=142
y=213
z=284
x=144
y=216
z=288
x=146
y=219
z=292
x=148
y=222
z=296
x=150
y=225
z=300
x=152
y=228
z=304
x=154
y=231
z=308
x=156
y=234
z=312
x=158
y=237
z=316
x=160
y=240
z=320
x=162
y=243
z=324
x=164
y=246
z=328
x=166
y=249
z=332
x=168
y=252
z=336
x=170
y=255
z=340
x=172
y=258
z=344
x=174
y=261
z=348
x=176
y=264
z=352
x=178
y=267
z=356
x=180
y=270
z=360
x=182
y=273
z=364
x=184
y=276
z=368
x=186
y=279
z=372
x=188
y=282
z=376
x=190
y=285
z=380
x=192
y=288
z=384
x=194
y=291
z=388
x=196
y=294
z=392
x=198
y=297
z=396
x=200
y=300
z=400
x=202
y=303
z=404
</code></pre>
http://stackoverflow.com/questions/1842280/how-to-write-bash-script-to-search-for-ips-in-a-file-and-put-write-them-to-anoth0How to write bash script to search for IP's in a file and put write them to another file?Matt Pascoe2009-12-03T19:24:34Z2009-12-03T19:46:57Z
<p>I need to write a bash script that will take a grepable nmap output file that displays IP addresses with port 80 open and copy the IPs that have port 80 open to another text file. The output looks similar to this:</p>
<pre><code># Nmap 4.76 scan initiated Thu Dec 3 13:36:29 2009 as: nmap -iL ip.txt -p 80 -r -R -PN --open -oA output
Host: 192.168.1.100 () Status: Up
Host: 192.168.1.100 () Ports: 80/open/tcp//http///
Host: 192.168.1.100 () Status: Up
# Nmap done at Thu Dec 3 13:36:29 2009 -- 3 IP addresses (3 hosts up) scanned in 0.28 seconds
</code></pre>
<p>I am fairly new to bash scripting so I am not sure where to start with this. If you can help me with this script it would be much appreciated.</p>
http://stackoverflow.com/questions/1841417/check-if-screensaver-is-active-using-mac-bash-script-command1Check if Screensaver is Active using Mac Bash Script Commandcredford2009-12-03T17:12:08Z2009-12-03T17:26:06Z
<p>I've found many useful Bash commands that can execute OS X behaviors from the command line such as:</p>
<p><code>screencapture -x -C $FILENAME</code></p>
<p>Is there such a command that can check if the screen saver is active?</p>
http://stackoverflow.com/questions/1840637/monitoring-bash-script-wont-terminate1Monitoring bash script won't terminateDaniil2009-12-03T15:28:34Z2009-12-03T16:01:27Z
<p>Hi all, I have this bash script whose job is to monitor a log file for the occurrence of a certain line. When located, the script will send out an email warning and then terminate itself. For some reason, it keeps on running. How can I be sure to terminate bash script below:</p>
<pre><code>#!/bin/sh
tail -n 0 -f output.err | grep --line-buffered "Exception" | while read line
do
echo "An exception has been detected!" | mail -s "ALERT" monitor@company.com
exit 0
done
</code></pre>
http://stackoverflow.com/questions/1839754/pipelines-vs-for1pipelines vs forManuel Selva2009-12-03T13:08:05Z2009-12-03T14:08:47Z
<p>Starting to play with bash on Linux, I am trying to perform a clearcase operation on all files resulting from an other clearcase operation. In other words I want to check in all the checked out files.</p>
<p>The command to list checked out files is: <code>cleartool lsco -short -rec</code>.
The command to check in a file is: <code>cleartool ci -nc filename</code>.</p>
<p>I am able to do that using the following for loop:</p>
<pre><code>for f in 'cleartool lsco -short -rec.'; do cleartool ci -nc $f; done
</code></pre>
<p>I am wondering if there is an other way to do that using pipelines? Something like:</p>
<pre><code>cleartool lsco -short -rec . | cleartool ci -nc
</code></pre>
<p>The problem here is that cleartool doesn't read stdin but expects a parameter, correct?</p>
http://stackoverflow.com/questions/1839120/how-to-grab-live-text-from-a-url0How to grab live text from a URL?Mint2009-12-03T10:42:30Z2009-12-03T12:51:03Z
<p>Im trying to grab all data(text) coming from a URL which is constantly sending text, I tried using PHP but that would mean having the script running the whole time which it isn’t really made for (I think). So I ended up using a BASH script.</p>
<p>At the moment I use wget (I couldn’t get CURL to output the text to a file)</p>
<pre><code>wget --tries=0 --retry-connrefused http://URL/ --output-document=./output.txt
</code></pre>
<p>So wget seems to be working pretty well, apart from one thing, every time I re-start the script wget will clear the output.txt file and start filling it again, which isn’t what I want. <b>Is there a way to tell wget to append to the txt file?</b></p>
<p>Also, is this the best way to capture the live stream of data?
Should I use a different language like Python or …? </p>
http://stackoverflow.com/questions/1836490/how-do-i-append-all-files-in-current-and-subdirs-as-command-arguments1How do I append all files in current and subdirs as command arguments?naught1012009-12-02T23:01:53Z2009-12-03T12:22:23Z
<p>I have a directory like this:</p>
<pre><code>dir
dir/somefile.txt
dir/subdir/subsub/somefile2.txt
dir/subdir2/somefile.txt
</code></pre>
<p>and I want to open all the files in all the subdirectories in a single instance of a command. I was trying find with -exec, or xargs, but these open each file with a separate instance of a command.</p>
<p>Basically, I want something that ends up like
<code>kate dir/somefile.txt dir/subdir/subsub/somefile2.txt dir/subdir2/somefile.txt</code>, but for any number of files in any number of subdirectories. I'm using bash, but any script suggestions are fine.</p>
<p><em>clarification: I didn't just mean .txt files, but any ascii file (ie. .php, .txt, .html, etc..)</em></p>