Search Results

Search: Posts Made By: Little
1,341
Posted By Little
i dnt know whether you need this or something...
i dnt know whether you need this or something else.

data=`cat file1`
data=($data)
n=0
for i in "${data[@]}"; do

m=$n
for j in "${data[@]}"; do

if [ $m -ne...
11,928
Posted By Little
you have to create the keypair in your QA.. or if...
you have to create the keypair in your QA.. or if you want to use the same key pair as your PRD, then export/import it to QA. if you can create a new keypair in qa. you can use
pgp --key-gen
and...
Forum: OS X (Apple) 07-26-2013
4,052
Posted By Little
which key are you having ?? the public key or the...
which key are you having ?? the public key or the private key?? if you have been give the public key, then you need to copy that public key (id_rsa.pub) thats in your .ssh directory to the remote...
2,405
Posted By Little
if you want to delete first 3 lines compulsorily,...
if you want to delete first 3 lines compulsorily, without matching the patterns then you can use
sed '1,3d' myapplication.log > myapp;mv myapp myapplication.log

deletes the 1st 3 lines from the...
2,908
Posted By Little
another way: i=0 while [ $i -le 9 ]; do ...
another way:

i=0
while [ $i -le 9 ]; do
j=$i
while [ $j -ge 0 ]; do
echo -n "$j "
(( j-- ));
done
echo "."
((i++))...
5,090
Posted By Little
syntax is proper. but try to replace ...
syntax is proper. but try to replace
end_ct=`sqlplus -s $ORACLE_USER/$ORACLE_PASS@$ORACLE_SID << EOF > sql_output.txt
select trim(description) from bravo_statistics
...
5,090
Posted By Little
just send the output to a temporary file instead...
just send the output to a temporary file instead of storing in a variable using

sqlplus -s $ORACLE_USER/$ORACLE_PASS@$ORACLE_SID << EOF > sql_output.txt
select trim(description)...
18,600
Posted By Little
i have changed the way you told and its working...
i have changed the way you told and its working fine..
Showing results 1 to 8 of 8

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