Search Results

Search: Posts Made By: nypreH
2,635
Posted By RavinderSingh13
Hello nypreH, I am not sure about your...
Hello nypreH,

I am not sure about your requirement as you are creating a new requirement in each post. Could you please try following and let me know if this helps.

awk 'FNR==NR{A[$2]=$0;next}...
2,635
Posted By RavinderSingh13
Hello nypreH, Could you please try following...
Hello nypreH,

Could you please try following and let me know if this helps.

awk 'FNR==NR{A[$1];next} ($3 in A)' Input_file2 Input_file1
Output will be as follows.

1_column1.1 ...
Forum: Red Hat 07-02-2015
8,357
Posted By bakunin
I have no idea as i have no 3550 at hand. Here is...
I have no idea as i have no 3550 at hand. Here is a link you might want to consult: IBM Infocenter...
Forum: Red Hat 07-02-2015
8,357
Posted By bakunin
Nothing different to any other Linux here: use...
Nothing different to any other Linux here: use modprode and lsmod to find out which modules are loaded or load them respectively.

I hope this helps.

bakunin
7,994
Posted By Scott
You can wrap the password in single quotes: ...
You can wrap the password in single quotes:


isql .... -p 'pas$word'
That will prevent the shell from giving special meaning to "$".
7,994
Posted By hergp
Do you have special characters, like quotes or...
Do you have special characters, like quotes or dollar-sign in the password? In this case, you have to properly quote the password to protect it.

Let's say, your password is 123$abc. In this case,...
10,039
Posted By spacebar
You shouldn't have to add all the 'export' items...
You shouldn't have to add all the 'export' items to your shell script if you can run sqlplus from the command line.
You should be able to just put the following lines at the top of your shell...
4,580
Posted By itkamaraj
for i in RC1.* do mv $i...
for i in RC1.*
do
mv $i destination/directory/
if [ "$?" -eq "0" ]
then
/call/the/script/here
wait
fi
done
4,580
Posted By itkamaraj
1) copy the file for i in *; do cp $i...
1) copy the file

for i in *; do cp $i RC1.$i; done

2) move the file

for i in RC1.*; do mv $i destination/directory/ ; done
Showing results 1 to 9 of 9

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