1
vote
4answers
40 views
Why doesn’t division produce a result in shell programming?
I have a shell programe, a little part of it can be seen as following:
count=1000
total=100000
percent=`expr $count/$total`
it cannot produce the division result, in the result file, only …
0
votes
5answers
60 views
how to grep a variable in the shell program?
#!/bin/bash
for ((var=0; var<20; var++))
do
echo " Number is: $(grep 'Multiple_Frame = echo **$var**' 20mrf.txt | wc -l)" >>statisic.txt
done
This shell program cannot produce correct …
0
votes
1answer
37 views
What is the use of TNS_ADMIN variable in Oracle?
Hi All,
Please tell me what is the use of TNS_ADMIN parameter in Oracle? I am working on Unix using oracle database.
Is this parameter is required to locate the sqlplus. I am executing a script in …
1
vote
4answers
55 views
How to detect the current directory in which I run my shell script?
How may I detect the name of the directory (or better yet the entire path) in which my shell script is run?
0
votes
5answers
40 views
How to detect a filename within a case statement - in unix shell?
Hi
I coded the below code and if no -l or -L option is passes to the script I need to assume (detect) whether a filename was passed as a param. The below third condition only matches if filename is …
1
vote
4answers
58 views
Exit entire program from a function call in shell?
Hi,
I have a function which I use in my shell script and based on a certain condition I'd like to call "exit 0" in that function so that the entire script exits. But for some reason the program still …
0
votes
1answer
27 views
Get result from shell script objective-c
I would like to run a shell script, from a file or from an objective-c string (within the code). I would also like the shell script's result to be stored to a variable. I would not like the shell …
0
votes
3answers
26 views
How to set read command to execute without having to press Enter button in shell?
Hi All,
I use the below code to assign a given by the user character to variable G:
read G
However in order to move forward with executing of my script I need to press enter button.
Is it possible …
0
votes
3answers
26 views
Problem with including an “image” in shell program.
Hi All,
I'm writing a program where at some point in my loop I want to print to output whatever is stored in a separate file (an image). But if I code it like this:
for c in $LIST
do
clear
…
1
vote
0answers
49 views
Scripts that extend wget --page-requisites? [closed]
I have posted a very similar question today but I would like to ask again with a wget/linux focus. I hope that's all right.
I need to create offline copies of web pages programmatically on a LAMP …
1
vote
2answers
42 views
How often are windows handles reused
I note an applications handle when I use the shell function to open it.
I then use that handle to close the application later.
However the user can also close that other application himself.
Can that …
2
votes
9answers
107 views
Portable way to get file size (in bytes) in shell?
On Linux, I use stat --format="%s" FILE, but Solaris I have access to doesn't have stat command. What should I use then?
I'm writing Bash scripts, and can't really install any new software on the …
0
votes
5answers
48 views
Case statement in shell - problem
Hi,
I'm completely new to shell and I'm trying to include a case where the function's arg #1 is greater or equal 12 then it should return 1. But the below doesn't work.
case $1 in
-ge 12) …
0
votes
3answers
49 views
How do I process something like this in unix shell?
Hi All,
What would be the best approach to process a call like this to my shell script?
./cars Mazda Toyota 2010 Honda BMW VW 2009
So that it prints out:
Mazda 2010
Toyota 2010
Honda 2009
BMW …
0
votes
4answers
35 views
is_number function doesn’t work for me - unix shell
When I pass in 2009 as a arg to this shell function it returns 0, why?
isyear()
{
case $arg in
[0-9][0-9][0-9][0-9]) NUM=1 ;;
*) NUM=0 ;;
esac
echo $arg
}
