Search Results

Search: Posts Made By: anindyabecs
12,984
Posted By Corona688
How email's mostly used now is way different from...
How email's mostly used now is way different from how it originally worked. SMTP used to be something email servers used to push email to other email servers, not something clients used.

Client A...
5,351
Posted By Corona688
bash most definitely is not /bin/sh except by...
bash most definitely is not /bin/sh except by coincidence on some systems. If you're using bash features, use #!/bin/bash, not #!/bin/sh. On some systems this difference is vital.
5,351
Posted By DGPickett
No, just a ksh substring feature, using file...
No, just a ksh substring feature, using file globbing wild cards with meta characters '*', '?', '[...]' but not '[^...]', not regex. It says get the value of animal and chew the end aggressively so...
6,604
Posted By okhawaja
for ssh I use puTTY its easier..
for ssh I use puTTY its easier..
6,604
Posted By kumaran_5555
The shell always interprets the $ prefixed names...
The shell always interprets the $ prefixed names as variable, and in your current shell you may not have a variable N, so you will get null being replaced for $N and this code will be sent trough ssh...
6,604
Posted By Corona688
Try this: cat <<EOF for N in 1 2 3 do ...
Try this:

cat <<EOF
for N in 1 2 3
do
echo VAR:$N
done
EOF
You get:
for N in 1 2 3
do
echo VAR:
done because $N gets substituted before the text is even printed! You...
Showing results 1 to 6 of 6

 
All times are GMT -4. The time now is 03:40 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy