active questions tagged shell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T10:21:03Zhttp://stackoverflow.com/feeds/tag/shellhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1933096/adding-a-listener-to-the-shell-for-swt-mouseup-doesnt-work1Adding a listener to the Shell for SWT.MouseUp doesn't workPradyumna2009-12-19T14:53:49Z2009-12-22T08:50:06Z
<p>Hi all,</p>
<p>I attached a listener to the Shell on SWT.MouseUp and SWT.MouseDown events, but the handleEvent method never gets fired. I tried clicking at many places on the window, but it doesn't get even to the System.out.println(..) in the code below...</p>
<p>Do you spot any error here?</p>
<p>Thank you!</p>
<pre><code>//c is a Composite.
final Listener l = new Listener(){
public void handleEvent(Event event) {
System.out.println("Got event. "+event);
Rectangle rect = c.getBounds();
if (rect.contains(event.x, event.y)){
if((Boolean)c.getData("selected")){
c.setData("selected", Boolean.FALSE);
}else{
c.setData("selected", Boolean.TRUE);
}
}
}
};
c.getShell().addListener(SWT.MouseUp, l);
c.getShell().addListener(SWT.MouseDown, l);
</code></pre>
<p>(This composite is inside an Eclipse editor that uses the Forms Toolkit)</p>
<p>Regards,</p>
<p>-Pradyumna</p>
http://stackoverflow.com/questions/1938068/is-the-unix-philosophy-falling-out-of-favor-in-the-ruby-community13Is the Unix Philosophy falling out of favor in the Ruby community?dan2009-12-21T03:49:24Z2009-12-22T07:27:49Z
<p>David Korn, a proponent of the Unix philosophy, chided Perl programmers a few years ago in <a href="http://news.slashdot.org/article.pl?sid=01/02/06/2030205&mode=thread" rel="nofollow">a Slashdot interview</a> for writing monolithic Perl scripts without making use of the Unix toolkit through pipes, redirection, etc. "Unix is not just an operating system," he said, "it is a way of doing things, and the shell plays a key role by providing the glue that makes it work."</p>
<p>It seems that reminder could apply equally to the Ruby community. Ruby has great features for working together with other Unix tools through popen, STDIN, STDOUT, STDERR, ARGF, etc., yet it seems that increasingly, Rubyists are opting to use Ruby bindings and Ruby libraries and build monolithic Ruby programs.</p>
<p>I understand that there may be performance reasons in certain cases for going monolithic and doing everything in one Ruby process, but surely there are a lot of offline and asynchronous tasks that could be well handled by Ruby programs working together with other small programs each doing one thing well in the Unix fashion, with all the advantages that this approach offers. </p>
<p>Maybe I'm just missing something obvious. Is the Unix Philosophy still as relevant today as it was 10 years ago?</p>
http://stackoverflow.com/questions/1944321/open-failed-no-such-file-or-directory0open failed: No such file or directorySteve2009-12-22T05:27:09Z2009-12-22T05:34:44Z
<p>I have built a standalone executable which references my .so object.
both are in the same directory. when I try to run executable it gives me the following error:</p>
<blockquote>
<p>ld.so.1: myExec: fatal: libMine.so:
open failed: No such file or directory</p>
</blockquote>
<p>what am I doing wrong? </p>
http://stackoverflow.com/questions/1941389/using-ssh-to-reboot-a-computer-when-it-is-hung0using ssh to reboot a computer when it is hungrashid2009-12-21T17:15:52Z2009-12-22T02:13:12Z
<p>Hello,</p>
<p>I have a computer running tests, sometimes during a test it will freeze. I was thinking of writing a shell script to ping the test machine and if it is hung reboot it. </p>
<p>I ssh into the test machine and was able to reboot it, but during a hang i had no luck! How can i reboot it during a hang through ssh?</p>
<p>Thank you</p>
<p>specs:
mac osx</p>
http://stackoverflow.com/questions/1943620/is-it-possible-to-open-a-remote-terminal-session-on-a-windows-xp-machine1Is it possible to open a remote terminal session on a Windows XP machine?Krougan2009-12-22T01:03:56Z2009-12-22T01:28:54Z
<p>Remote desktop is... useable, but I'd like to get a proper remote terminal window open on the Windows XP machine, like I'm able to with Linux. A quick Google points at <a href="http://support.microsoft.com/kb/555966" rel="nofollow">this</a>, but it looks like it's only for Vista/Server.</p>
http://stackoverflow.com/questions/1936313/how-to-get-cleartool-diff-to-return-to-command-line-while-diff-viewer-is-still-op1How to get cleartool diff to return to command line while diff viewer is still open?talkaboutquality2009-12-20T16:46:31Z2009-12-22T01:17:08Z
<p>As described in one of the answers to SO question "<a href="http://stackoverflow.com/questions/375398/any-way-to-use-a-custom-diff-tool-with-cleartool-clearcase">Any way to use a custom diff tool with cleartool/clearcase?</a>" I have installed WinMerge and a single diff opens fine in WinMerge based on a command of the form</p>
<p>cleartool diff -g filename filename@@clearcase-virtual-path-to-version-I-want-to_compare-to</p>
<p>But when I run that command in cygwin, it does not return to the command prompt until I exit WinMerge.</p>
<p>I want to execute a few such commands from a .bat file or shell script (one for each file in the change set of a given ClearCase activity) and have it either open multiple WinMerge instances, or multiple windows in a single WinMerge instance.</p>
<p>I was able to do that once but I've forgotten how. Can someone remind me?</p>
<p>I sense that this is not really a ClearCase question, but perhaps a DOS or shell question about spawning processes from the cygwin command line ...</p>
http://stackoverflow.com/questions/1940626/vba-zip-file-error0VBA Zip File errorMT2009-12-21T15:07:32Z2009-12-22T00:37:52Z
<p>I am using code similar to the below to add some files to a zip folder:</p>
<pre><code>Set oApp = CreateObject("Shell.Application")
oApp.Namespace(CVar(strDest)).CopyHere CVar(strSource)
</code></pre>
<p>This works fine most of the time, but sometimes I get an error:</p>
<p>"(Compressed (zipped) Folders Error) Cannot create output file". This error is raised asynchronously outside of my VBA code and as such I cannot trap it to take remedial action.</p>
<p>If I enter break mode and step back to:</p>
<pre><code>oApp.Namespace(CVar(strDest)).CopyHere CVar(strSource)
</code></pre>
<p>then the file is added correctly. </p>
<p>I am guessing that there is some kind of lock either on the compressed folder or the source file that is causing this problem, but I am unsure as to how to check this. I should note that the files are being added are pdf files created from Microsoft Access 2007 and we are using the fully qualified paths and the code runs as follows creating up to 10 pdfs per zip file:</p>
<ol>
<li><p>Create Zip</p></li>
<li><p>Run this loop:</p></li>
</ol>
<pre> For Each ReportToRun
CreatePdf ' using DoCmd.OutputTo acOutputReport, "rptHame", acFormatPDF, strReportName
AddToZip
Next</pre>
<p>Any idea how to either fix this or trap the Cannot create output file error?
Thanks</p>
http://stackoverflow.com/questions/1885798/how-to-create-a-database-btable-from-unix-shell0how to create a database btable from unix shell? Arunachalam2009-12-11T04:31:54Z2009-12-22T00:28:15Z
<p>how to create a database btable from unix shell? </p>
<p>and how to access the contents of the data table or to add to the table. can i create a table in ms-acces and use it throug shell?</p>
<p>or please sugest some e-books or sites to refer </p>
http://stackoverflow.com/questions/577595/open-a-file-from-cygwin6Open a file from CygwinMo2009-02-23T13:18:18Z2009-12-21T16:51:20Z
<p>Hello,</p>
<p>is there an equivalent to OSX <code>open</code> command in cygwin. <code>open</code> opens a file with the default application for that type.</p>
<p>I want to do something like</p>
<pre><code>$ magic-command file.xls
#excel opens as if file.xls would have been double-clicked
$ magic-command file.txt
#notepad opens as if file.xls would have been double-clicked
</code></pre>
<p>You get the idea?</p>
<p>Basically something like a "cygwin-double-click"</p>
http://stackoverflow.com/questions/1937760/alternative-to-idle0Alternative to IDLE [closed]Elliot2009-12-21T01:30:31Z2009-12-21T03:28:02Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/81584/what-ide-to-use-for-python">What IDE to use for Python</a><br>
<a href="http://stackoverflow.com/questions/135029/what-ide-would-you-recommend-for-python-development">What IDE would you recommend for Python development?</a> </p>
</blockquote>
<p>I do a lot of work in python, and one thing I have come to loathe is opening up IDLE whenever I need to use the command shell. A lot of editors can do Python syntax highlighting, but I don't know of any that have a live shell terminal. I generally like programs like Programmer's Notepad and Kate for this sort of thing, although I have to work on multiple platforms (without installing massive subsidiary OSes, so I can't generally use Kate). Is there an alternative to IDLE?</p>
http://stackoverflow.com/questions/1937595/problem-with-bin-sh-i-in-a-forked-process-error-cant-access-tty-job-control0Problem with bin/sh -i in a forked process, error: 'can't access tty, job control turned off'KPexEA2009-12-21T00:16:31Z2009-12-21T00:51:55Z
<p>I'm writing a cgi-bin program for my Sheevaplug (running the default Ubuntu install) that displays a shell in a browser page. It is a single C program that is placed in the cgi-bin folder and viewed in a browser. It automatically launches a daemon and the daemon forks an instance of the shell. The cgi-bin communicates with the daemon via shared memory block, and the daemon communicates with the shell by redirecting its stdin/stdout to the shell's stdout/stdin. When you leave the page it automatically turns off the daemon.</p>
<p>It works if I launch it using "/bin/sh" and I send a whole command line at a time from the browser to it. But using that design it's not interactive.</p>
<p>So I changed it to send a character at a time to "/bin/sh" and added "-i" so the shell runs in interactive mode.</p>
<p>When the shell starts up it displays the error "can't access TTY, job control turned off."</p>
<p>It then displays the '$' when it is ready for input and seems to work, but sending delete characters to it just confuses it and it doesn't properly handle deleting. I'm not really sure if it is in interactive mode or not. When I type 'su root' I get the error "must be run from a terminal'.</p>
<p>Any ideas what I am doing wrong?</p>
<p>PS: When I have it done it will be released under the GPL.</p>
http://stackoverflow.com/questions/1937564/custom-interactive-shell-with-python1Custom (interactive) shell with Pythonpoke2009-12-21T00:06:17Z2009-12-21T00:24:43Z
<p>I'm currently trying to make some small shell-like utility for a custom script I wrote, so I can easily work with it (it's rather simple, so an interactive shell would be perfect).</p>
<p>Do you have any resources for me on how to create a shell in Python? I spent googling for a while, but all I could find was information about IDLE and similar <em>Python</em> interpreters. But I would rather want to know how to write a completely custom and command line based shell.</p>
<p>My approach would be hooking the stdin/out for commands, but given that the Python library offers so many great utilities, I want to make sure there if there is no better way.</p>
http://stackoverflow.com/questions/656741/find-file-in-directory-from-command-line0Find file in directory from command linexyc2009-03-18T02:15:02Z2009-12-20T11:25:15Z
<p>Noob question here, trying to wean myself off of IDEs.</p>
<p>In editors/ides such as eclipse and textmate, there are shortcuts to quickly find a particular file in a project directory. </p>
<p>Is there a similar tool to do full path completion on filenames within a directory (recursively), in bash or other shell?</p>
<p>I have projects with alot of directories, and deep ones at that (sigh, java).
Hitting tab in the shell only cycles thru files in the immediate directory, thats not enough =/</p>
http://stackoverflow.com/questions/1926289/passing-variable-from-shell-script-to-sql-statement0Passing variable from shell script to sql statementCez2009-12-18T04:33:58Z2009-12-19T20:47:59Z
<p><br>I was trying to make cat1.txt as a variable ($2) so that it will be inserted in sql select statement. Is there a way to do this? <br></p>
<pre><code>my cat1.txt
1111
2334
2234
3333
4444
....
....
etc.
</code></pre>
<p><br> my SQL Statement<br></p>
<pre><code>set echo off linesize 280 pagesize 0 newpage 0 feedback 1 verify off head off trimspool on
alter session set sort_area_size=104857600;
define filename = &1
spool &&filename
prompt DATE TIME Service Name Amount
select trim(to_char(trans_time,'yyyymmdd')) || chr(9) ||
trim(to_char(trans_time,'hh24miss')) || chr(9) ||
trim(prod_name)|| chr(9) ||
(prod_price)
where m_date = 11 and day >= 23 and day <= 30
and (prod_bill) in ('1111','2334','2234','3333','4444')
/
spool off
exit
</code></pre>
<p><br> I want to try this,please see below. Instead of manually typing the prod_bill make it as variable like the filename. Anything I should add to my shell script? Thanks :-)<br></p>
<pre><code>from prod_trans
where m_date = 11 and day >= 23 and day <= 30
and (prod_bill) in ($2)
</code></pre>
<p><br>MY SHELL SCRIPT<br></p>
<pre><code>#!/bin/sh
export ORACLE_BASE=/u01/app/oracle
export ORACLE_SID=prod
export ORACLE_HOME=/u01/app/oracle/product/9.2.0
export ORACLE_BASE ORACLE_HOME ORACLE_SID
export PATH=$PATH:/usr/local/bin:$ORACLE_HOME/bin:/usr/sbin:/opt/java1.5/bin
export USERNAME=prods
export PASSWORD=prods
export OUT_PATH=/home/prod/reports/adhoc/REp
export SCRIPT=$OUT_PATH/BICScripts/Translog
export OUTPUT=/home/prod/reports/adhoc/REp/Scripts/log/OUTPUT
export FILENM=$OUTPUT/log_`date +%y%m%d`.txt
sqlplus -s $USERNAME/$PASSWORD@$ORACLE_SID @$SCRIPT/log.sql $FILENM
</code></pre>
http://stackoverflow.com/questions/1444367/commenting-out-a-set-of-lines-in-a-shell-script1Commenting out a set of lines in a shell scriptbenjamin button2009-09-18T12:50:42Z2009-12-18T17:50:48Z
<p>I was wondering if there is a way to comment out a set of lines in a shell script.
How could I do that? We can use /* */ in other programming languages.
This is most useful when I am converting/using/modifying another script
and I want to keep the original lines instead of deleting.</p>
<p>It seems a cumbersome job to find and prefix # for all the lines which are not used.</p>
<p>Lets say there are 100 lines in the script in consequent lines which are not to used.
I want to comment them all out in one go. Is that possible?</p>
http://stackoverflow.com/questions/1914542/are-there-any-good-reference-implementations-available-for-command-line-implement3Are there any good reference implementations available for command line implementations for embedded systems?venk2009-12-16T13:02:10Z2009-12-18T16:32:36Z
<p>I am aware that this is nothing new and has been done several times. But I am looking for some reference implementation (or even just reference design) as a "best practices guide". We have a real-time embedded environment and the idea is to be able to use a "debug shell" in order to invoke some commands. Example: "SomeDevice print reg xyz" will request the SomeDevice sub-system to print the value of the register named xyz.</p>
http://stackoverflow.com/questions/1928018/the-cd-command-with-argument-will-change-to-previous-directory-is-there-a-wa3The cd command with "-" argument will change to previous directory. Is there a way to know which directory it is? [closed]Abhijit2009-12-18T12:46:11Z2009-12-18T15:38:55Z
<p>Hi all,</p>
<p>The command </p>
<blockquote>
<p><strong>cd -</strong></p>
</blockquote>
<p>will change the pwd to the last directory. </p>
<p>Is there a way to know which directory it is, so that I'll know where I am cd'ing to?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1923550/find-out-if-install-script-runs-on-mac-or-linux-machine2Find out if install script runs on mac or linux machineBurntime2009-12-17T18:05:09Z2009-12-17T18:09:20Z
<p>Hi *, </p>
<p>I'm trying to find out if my install scrip is running on a Mac or Linux device. </p>
<p>Can someone give me a hint?</p>
<p>Thanks
Burntime</p>
http://stackoverflow.com/questions/1297529/iterating-over-options-and-quoted-unquoted-arguments-passed-to-bash-script1Iterating over options and quoted/unquoted arguments passed to bash scriptshellnewb2009-08-19T02:24:48Z2009-12-17T17:00:03Z
<p>I have a bash script that uses getopt to parse its parameters. It correctly handles switches and long options, as well as arguments and quoted arguments, but I cannot figure out how to iterate over the options/arguments string returned by the backticks. Something like:</p>
<pre><code>params=`getopt -o ab -l ccc -- "$@"`
echo $params
for param in "$params"
do
echo $param
done
</code></pre>
<p>Will echo out <code>-a -- 'foo' 'foo bar'</code> when the script is invoked as <code>./a.sh -a foo "foo bar"</code>, but the loop rather than iterating over each separately will only run once over the entire string. Removing the double quotes:</p>
<pre><code>for param in $params
</code></pre>
<p>will cause it to iterate like this:</p>
<pre><code>-a
--
'foo'
'foo
bar'
</code></pre>
<p>ignoring the quoting around "foo bar". Is there a simple way to fix this?</p>
http://stackoverflow.com/questions/1919492/when-in-vim-insert-mode-is-there-a-way-to-add-path-autocompletion2When in vim insert mode is there a way to add path autocompletion?stephenmm2009-12-17T04:36:17Z2009-12-17T04:42:07Z
<p>So I do a lot of shell scripts and I am constantly having to enter in paths and I was wondering if anyone knew of a way to get vim to autocomplete paths and files while in insert mode. Just like when you are in your favorite shell you tab to complete the directory or file. </p>
<p>Extra credit if you can get CTRL-D functionality of the shell into vim insert mode (Ie. to see what files/directories are in the current path).</p>
http://stackoverflow.com/questions/1878225/find-latest-version-of-rpms-from-a-mirror0find latest version of rpms from a mirroraj2009-12-10T02:05:01Z2009-12-16T23:12:02Z
<p>I want to write a script to find the latest version of rpm of a given package available from a mirror for eg: <a href="http://mirror.centos.org/centos/5/updates/x86%5F64/RPMS/" rel="nofollow">http://mirror.centos.org/centos/5/updates/x86%5F64/RPMS/</a></p>
<p>The script should be able to run on majority of linux flavors (eg centos, redhat, ubuntu). So yum based solution is not an option. Is there any existing script that does this? Or can someone give me a general idea on how to go about this?</p>
http://stackoverflow.com/questions/1917582/whats-the-difference-between-using-and-in-shell3What's the difference between using > and >> in shell?goe2009-12-16T20:47:09Z2009-12-16T20:54:59Z
<p>I've seen somewhere that we can use >> in shell.
What's the difference between using > and >> in shell?</p>
http://stackoverflow.com/questions/1430828/understanding-shell-redirection-on-non-existant-files0understanding shell redirection on non existant filesSenthil Kumaran2009-09-16T03:43:22Z2009-12-16T17:40:37Z
<pre><code>ls > ls.out
</code></pre>
<p>this will include ls.out in the list too.
My understanding is: > (shell output redirection operator is creating a file first (to take the STDOUT) if it is not already existing and then ls command is coming to play and it is including the just created ls.out file in the output.
Is this correct? If not, can you please elaborate the workings of that command.</p>
<p>Similarly</p>
<pre><code>wc temp > temp
</code></pre>
<p>Will print 0 0 0 temp inside the just created temp file.</p>
<p>This behavior of shell is interesting. I wonder, how it is actually working. BTW, both are exercises in The Unix Programming Environment Book. As I mentioned the answer above, I want some expert to correct my understanding. </p>
http://stackoverflow.com/questions/1915636/is-there-a-way-to-uniq-by-column1Is there a way to 'uniq' by column ?Eno2009-12-16T16:03:16Z2009-12-16T17:17:05Z
<p>Hello, i've a .csv file like this :</p>
<pre><code>stack2@domain.com,2009-11-27 01:05:47.893000000,xx2.net,127.0.0.1
overflow@domain2.com,2009-11-27 00:58:29.793000000,xx3.net,255.255.255.0
overflow@domain2.com,2009-11-27 00:58:29.646465785,2x3.net,256.255.255.0
...
</code></pre>
<p>I have to remove similar e-mails ( the entire line ) in the file. The problem is how to use 'uniq' on the field 1 ( separated by comma ) ? According to man uniq doesn't have options for columns.</p>
<p>I tried something with sort | uniq but it doesn't work :/
Thank you,</p>
http://stackoverflow.com/questions/1915062/shell-script-spawning-a-process-after-a-delay1Shell script spawning a process after a delaygerdemb2009-12-16T14:40:35Z2009-12-16T15:14:36Z
<p>How can I spawn a process after a delay in a shell script? I want a command to start 60 seconds after the script starts, but I want to keep running the rest of the script without waiting 60 seconds first. Here's the idea:</p>
<pre><code>#!/bin/sh
# Echo A 60 seconds later, but without blocking the rest of the script
sleep 60 && echo "A"
echo "B"
echo "C"
</code></pre>
<p>The output should be</p>
<pre><code>B
C
... 60 seconds later
A
</code></pre>
<p>I need to be able to do this all in one script. Ie. no creating a second script that is called from the first shell script.</p>
http://stackoverflow.com/questions/1898712/make-sure-int-variable-is-2-digits-long-else-add-0-in-front-to-make-it-2-digits0Make sure int variable is 2 digits long, else add 0 in front to make it 2 digits longMint2009-12-14T03:11:55Z2009-12-16T13:48:37Z
<p>How do I check a int variable ($inputNo) to see if it’s 2 or more decimal digits long?</p>
<p>Example:</p>
<pre><code>inputNo="5"
</code></pre>
<p>Should be changed to: 05</p>
<pre><code>inputNo="102"
</code></pre>
<p>Should be left alone: 102</p>
<p>I thought about using <code>wc</code> and <code>if</code> statements, but <code>wc -m</code> doesn’t seems to give the actual characters passed into <code>wc</code>, as <code>wc</code> always seems to give +1 to the characters that is given.</p>
<p>But I don’t know how to add a 0 in front of the current input number.</p>
http://stackoverflow.com/questions/1912328/how-to-map-delete-and-end-keys-on-tcsh-shell1How to map Delete and End keys on tcsh shell ?shan232009-12-16T04:39:53Z2009-12-16T05:45:11Z
<p>I use tcsh , and when Delete/End is pressed on cmd line, it simply shows up as <code>~</code> ; I have to press <code><Ctrl><e></code> to go to end of line. Can anyone help me to be able to use Delete/End keys as their name suggests ?</p>
http://stackoverflow.com/questions/1908610/how-to-get-pid-of-background-process0How to get PID of background process?Vladimir Bezugliy2009-12-15T16:24:00Z2009-12-16T00:05:40Z
<p>I start background process from my shell script.<br>
And I would like to kill this process when my script will be finished.<br>
How to get pid of this process from my shell script?<br>
As far as I can see variable $! contains pid of current script not background process.</p>
http://stackoverflow.com/questions/378829/convert-decimal-to-hexadecimal-in-unix-shell-script3Convert decimal to hexadecimal in UNIX shell scriptskiphoppy2008-12-18T19:00:50Z2009-12-15T16:11:10Z
<p>In a UNIX shell script, what can I use to convert decimal numbers into hexadecimal? I thought od would do the trick, but it's not realizing I'm feeding it ASCII representations of numbers.</p>
<p>printf? Gross! Using it for now, but what else is available? :)</p>
http://stackoverflow.com/questions/1108527/recursively-add-file-extension-to-all-files2recursively add file extension to all filesseengee2009-07-10T09:04:58Z2009-12-14T12:58:52Z
<p>I have a few directories and sub-directories containing files with no file extension. I want to add <code>.jpg</code> to all the files. I have seen bash scripts for changing the extension but not for just adding one. It also needs to be recursive, can someone help?</p>