0
votes
1answer
26 views
Passing variable from shell script to sql statement
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?
my cat1.txt
1111
2334
2234
3333
4444
....
....
etc.
my SQL …
1
vote
0answers
4 views
Adding a listener to the Shell for SWT.MouseUp doesn’t work
Hi all,
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 …
1
vote
7answers
159 views
Commenting out a set of lines in a shell script
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 …
3
votes
6answers
75 views
Are there any good reference implementations available for command line implementations for embedded systems?
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 …
3
votes
0answers
81 views
The cd command with “-” argument will change to previous directory. Is there a way to know which directory it is? [closed]
Hi all,
The command
cd -
will change the pwd to the last directory.
Is there a way to know which directory it is, so that I'll know where I am cd'ing to?
Thanks
2
votes
1answer
26 views
Find out if install script runs on mac or linux machine
Hi *,
I'm trying to find out if my install scrip is running on a Mac or Linux device.
Can someone give me a hint?
Thanks
Burntime
1
vote
2answers
212 views
Iterating over options and quoted/unquoted arguments passed to bash script
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 …
1
vote
2answers
42 views
When in vim insert mode is there a way to add path autocompletion?
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 …
0
votes
3answers
54 views
find latest version of rpms from a mirror
I want to write a script to find the latest version of rpm of a given package available from a mirror for eg: http://mirror.centos.org/centos/5/updates/x86%5F64/RPMS/
The script should be able to run …
3
votes
5answers
92 views
What’s the difference between using > and >> in shell?
I've seen somewhere that we can use >> in shell.
What's the difference between using > and >> in shell?
0
votes
3answers
71 views
understanding shell redirection on non existant files
ls > ls.out
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 …
1
vote
5answers
63 views
Is there a way to ‘uniq’ by column ?
Hello, i've a .csv file like this :
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
…
1
vote
3answers
34 views
Shell script spawning a process after a delay
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 …
0
votes
3answers
124 views
Make sure int variable is 2 digits long, else add 0 in front to make it 2 digits long
How do I check a int variable ($inputNo) to see if it’s 2 or more decimal digits long?
Example:
inputNo="5"
Should be changed to: 05
inputNo="102"
Should be left alone: 102
I thought about …
1
vote
3answers
29 views
How to map Delete and End keys on tcsh shell ?
I use tcsh , and when Delete/End is pressed on cmd line, it simply shows up as ~ ; I have to press <Ctrl><e> to go to end of line. Can anyone help me to be able to use Delete/End keys as …
