2
votes
2answers
62 views
Filter lines by pattern in bash script
Hello! I have two variables, one with text, and another with patterns. And I want to filter out lines, matched patterns. How can I do that?
My script looks like this
# get ignore files list
…
0
votes
6answers
60 views
sh - Build string containing paths
I'm building a small shell script for finding cat/man pages on a wide range of unix systems... in bash, I could build all possible paths by doing this:
# default search paths
default=$(echo …
1
vote
4answers
215 views
Getting user input after stdin has been redirected, in a bourne script
(this is indirectly a part of a much larger homework assignment)
I have something like
while read LINE
do
stuff-done-to-$LINE
echo "Enter input:"
read INPUT
…
0
votes
2answers
180 views
running process in backround using a bash script
I want run a script as follows:
runner:
ssh 'java program &'
ssh 'java program &'
How do I write the script to fork the first process? Currently, it waits for it to finish.
thanks
0
votes
2answers
55 views
csh list of commands like ksh { list; }
Hi,
In bourne-compatible shells, the { list; } syntax causes the complete list of commands to be read by the shell before executing it, without opening a new shell. Is there anything similar for the …
0
votes
5answers
757 views
Shell scripting for godaddy coupon codes - how does this script work?
On a coupon site someone posted a shell script for finding Godaddy discount codes.
1 - Could someone explain how this script works?
Specifically, I'm confused about the syntax:
links url -dump | …
1
vote
4answers
234 views
manipulate parameters in sh
I'm working with a utility (unison, but that's not the point) that accepts parameters like:
$ unison -path path1 -path path2 -path path3
I would like to write a sh script that I could run like …
0
votes
3answers
152 views
To make a if-clause in Sh
I have the following in a file which is sourced both by .bashrc and .zshrc. The syntax is from the site.
if $SHELL=/bin/zsh
…
2
votes
3answers
587 views
shell script to spawn processes, terminate children on SIGTERM
I want to write a shell script that spawns several long-running processes in the background, then hangs around. Upon receiving SIGTERM, I want all the subprocesses to terminate as well.
Basically, I …
1
vote
3answers
382 views
How to get script file path inside script itself when called through sym link
Hi,
When I need to get path to the script file inside script itself I use something like this:
`dirname $0`
that works file until I call the script through sym link to it. In that case above code …
0
votes
2answers
142 views
Separating objects and source with a makefile
Hi, I have been having troubles getting my makefiles to work the way I want. First off, I would like to say this is POSIX make, as in http://www.opengroup.org/onlinepubs/009695399/utilities/make.html …
0
votes
3answers
251 views
How to do a script in BASH which takes random text from file?
I have file like:
aaa
bbb
ccc
ddd
eee
And I want to do a script in BASH which can takes random line of this text file, and return it to me as variable or something.
I hear it can be done with …
0
votes
2answers
122 views
sh read command eats slashes in input?
Perhaps easiest to explain with an example:
$ echo '\&|'
\&|
$ echo '\&|' | while read in; do echo "$in"; done
&|
It seems that the "read" command is interpreting the slashes in the …
2
votes
4answers
895 views
Write an executable .sh file with Java for OSX
So I am trying to write an .sh file that will be executable, this is how I'm currently writing it:
Writer output = null;
try {
output = new BufferedWriter(new FileWriter(file2));
…
1
vote
5answers
2k views
Select unique or distinct values from a list in UNIX shell script
I have a ksh script that returns a long list of values, newline separated, and I want to see only the unique/distinct values. It is possible to do this?
For example, say my output is file suffixes in …
