0
votes
6answers
71 views
Bourne Shell Scripting — simple for loop syntax
I'm not entirely new to programming, but I'm not exactly experienced. I want to write small shell script for practice.
Here's what I have so far:
#!/bin/sh
name=$0
links=$3
owne …
0
votes
3answers
58 views
Is there a way to capture the output of a command, and its return value into variables in a shell script?
So, let's say that I have a command, foo, in a script which has both a return value, and an output string that I'm interested in, and I want to store those into a variable (well at …
2
votes
4answers
199 views
Naming: BEGIN ~ END vs LIVE ~ EVIL block structured languages
Curly Bracket languages are well known: (wikipedia)
Other programming languages can have BEGIN ~ END vs LIVE ~ EVIL block structuring. eg
A) BEGIN ~ END, DO ~ END, IF ~ END IF - …
2
votes
5answers
94 views
shell matching a pattern using a case-statement which is stored inside a variable
I am trying to match a pattern with a case-statement where the pattern is stored inside a variable. Here is a minimal example:
PATTERN="foo|bar|baz|bla"
case "foo" in
${PATTE …
4
votes
7answers
2k views
How do I compare strings in Bourne Shell?
I need to compare strings in shell:
var1="mtu eth0"
if [ "$var1" == "mtu *" ]
then
# do something
fi
But obviously the "*" doesn't work in Shell. Is there a way to do it?
0
votes
0answers
60 views
Any other bourne shell port on Linux? [closed]
I'm looking for bourne shell ports on linux other than the Heirloom shell...
Pay attention:
What I mean with bourne shell is "Bourne Shell",not "Bourne Compatible Shell",not "C Sh …
1
vote
4answers
202 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:"
…
0
votes
2answers
63 views
Shellwords.shellescape implementation for Ruby 1.8
While the build of 1.8.7 I have seems to have a backported version of Shellwords::shellescape, I know that method is a 1.9 feature and definitely isn't supported in earlier version …
2
votes
1answer
207 views
Running the rpmbuild command with the --quiet option flag results in extensive debug info.
Hi all,
I wish to minimize the output of my rpm build procedure.
I run the following command: rpmbuild -ba --quiet "/tmp/yaneeve/kit/linux/rpm_spec"
My system is: Linux yaneeve- …
1
vote
2answers
163 views
How do I capture the output of a command to a file descriptor in Bourne shell?
The standard way to capture command output in Bourne shell is to use the $() syntax:
output=$(mycommand)
For commands that have a lot of output, however, this requires the shell …
0
votes
3answers
2k views
For Loop in Shell Script - add breakline in csv file
Hello all,
I wish to introduce a for loop in my shell script and I was hoping I could get some help with this.
I am executing a command from a text file. I wish to execute each c …
4
votes
3answers
535 views
Compiling and Running java in Unix ( coming from Windows )
Ok, this is working on windows. My Java app is running and functioning normally
javac -classpath .;ojdbc14.jar -g foo.java
java -classpath .;ojdbc14.jar foo
However, when I do …
