10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Is there a better way to show the results of a file on the screen other then less , which exits the program and displays:
Input Status
AB026906.1:c.274G>T OK
c:/Users/cmccabe/Desktop/Python27/syntax_verify.txt (END)
authenticate() {
printf "\n\n"
less... (4 Replies)
Discussion started by: cmccabe
4 Replies
2. UNIX for Dummies Questions & Answers
Hi guys,
Been messing around with shell programming for a couple of days and I found something that was pretty odd in the behavior of the echo command. Below is an example-:
When I type the following in my /home directory from my lxterminal in Debian-:
echo "`ls -l`"
I get the... (2 Replies)
Discussion started by: sreyan32
2 Replies
3. Shell Programming and Scripting
I came across and unexpected behavior with redirections in tcsh. I know, csh is not best for redirections, but I'd like to understand what is happening here.
I have following script (called out_to_streams.csh):
#!/bin/tcsh -f
echo Redirected to STDOUT > /dev/stdout
echo Redirected to... (2 Replies)
Discussion started by: marcink
2 Replies
4. UNIX Desktop Questions & Answers
#!/bin/bash
date
echo $_
What does $_ will print? (3 Replies)
Discussion started by: kkalyan
3 Replies
5. Shell Programming and Scripting
echo `echo ` doesn't echoes anything. And it's logic. But
echo `echo `echo ` ` does echoes "echo". What's the logic of it? the `echo `echo ` inside of the whole (first) echo, echoes nothing, so the first echo have to echo nothing but echoes "echo"
(too much echoing :P):o (2 Replies)
Discussion started by: hakermania
2 Replies
6. UNIX for Dummies Questions & Answers
Bit of a weird one i suppose, i want to use an echo inside an echo... For example...
i have a script that i want to use to take users input and create another script. Inside this script it creates it also needs to use echos...
echo "echo "hello"" >$file
echo "echo "goodbye"" >$file
... (3 Replies)
Discussion started by: mokachoka
3 Replies
7. Shell Programming and Scripting
So in my shell i execute:
{ while true; do echo string; sleep 1; done } | read line This waits one second and returns.
But
{ while true; do /bin/echo string; sleep 1; done } | read line continues to run, and doesn't stop until i kill it explicitly.
I have tried this in bash as well as zsh,... (2 Replies)
Discussion started by: ulidtko
2 Replies
8. Solaris
Hi anyone know...
ID1=1234
ID2=2345
ID3=3456
count=1
while
do
echo $(ID$count) --> i would like the out put to be 1234
count=$((count + 1))
done
exit 0
if i would like to echo ID1 then it will should 1234567. how should i echo
like this would not works -> echo $(ID$count)
... (7 Replies)
Discussion started by: summerpeh
7 Replies
9. Shell Programming and Scripting
Dear,
How can i put an awk output in the same line after echo.
e.g.: echo TONTAL, awk '.......}' > toto
the echo value and the output of the awk i need them both on the same line.
Please any one can help me????
Thanks (2 Replies)
Discussion started by: tontal
2 Replies
10. UNIX for Dummies Questions & Answers
Hi,
When I do /usr/ucb/echo "message \n" in bone shell program , \n never works as new line feeder. It just showed it as part of my message.
Is there something wrong with my system?
Thanks! (3 Replies)
Discussion started by: whatisthis
3 Replies