1
vote
7answers
84 views
Looking for book on Bash scripting
I'd like to brush up on my knowledge of Shell scripting with Bash for a job interview Monday.
What would the preferred book be for someone with an existing knowledge looking to review the topic?
0
votes
2answers
39 views
GUI Using Shell Batch File
I'm now going to develop a program that will generate Shell Batch Files(*.sh), but I want to know some things:
It's possible to show GUIs using they?
How to do this?
1
vote
2answers
56 views
Is there a better way to erase a line than echo “ “?
I am wanting to erase several (let's say 10) lines on the screen using bash.
I know this can be done by:
for x in `seq 1 10`; do
echo " "
done
…
0
votes
1answer
25 views
How can I assign the output of a function to a variable using bash?
I have a bash function that produces some output:
function scan {
echo "output"
}
How can I assign this output to a variable?
ie. VAR=scan (of course this doesn't work - it makes VAR equal the …
0
votes
3answers
27 views
cygwin tab completion
how can a complete novice such as myself set up her cygwin to have tab completion?
edit:
I do have it automatically. but It does not seem to complete paths. how do I set it up to complete paths?
…
2
votes
3answers
54 views
grep-ing multiple files
I want to grep multiple files in a directory and collect the output of each grep in a separate file ..So if I grep 20 files, I should get 20 output-files which contain the searched item. Can anybody …
0
votes
5answers
110 views
How do I fix “bash: perl myscript.pl: command not found”?
Maybe it's dumbest question in the world, but I seriously have problems with it and could use help. I am trying to run perl script on linux. It's a simple text editing script, nothing fancy. I googled …
1
vote
3answers
44 views
Bash alias query
How can I turn the following command into a bash alias?
find . -name '*.php' | xargs grep --color -n 'search term'
Where I can specify the file extension and 'search term' is obviously the search …
0
votes
1answer
28 views
arrow key via stdin
Hi everybody,
I'm trying to send an arrow key via the stdin to the bash:
cat | /bin/bash
then i am typing "echo hi" => "hi" appears on the console (of course without the quotes)
then i press the …
1
vote
1answer
40 views
Bash script on Solaris, using “:” on an array does not always work
I have a strange issue with array manipulation within a bash script on Solaris. I am using the syntax ${varName[@]:index} to obtain all of the elements in array varname after the specified index. …
0
votes
3answers
84 views
How to GZip every file separately
Easy and fast question, I just don't want to have all of them in a big tar :-)
0
votes
4answers
59 views
Bash Shell Script error: syntax error near unexpected token ‘{
Below is the snippet of code that keeps giving me the problem. Could someone explain to me why my code isn't working.
# Shell Version of Login Menu
Administrator ()
{
clear
…
0
votes
0answers
18 views
How can I check the PID of a X-server in another virtual terminal? [closed]
Hello, I am trying to open a program in a naked X-server on a different virtual terminal.
I am using ubuntu 9.10.
The command I'm using is this.
openvt -f -s -- `X :2 & '/path/to/program' …
0
votes
4answers
56 views
choosing even-numbered rows from a file
How do I choose even numbered rows of a file?
I wish to select rows #2, 4, 6, etc. from a file that contains data. Can anyone help me with this?
0
votes
6answers
86 views
In bash shell script how do I convert a string to an number
Hey I would like to convert a string to a number
x="0.80"
#I would like to convert x to 0.80 to compare like such:
if[ $x -gt 0.70 ]; then
echo $x >> you_made_it.txt
fi
Right now I get …
