AIX Query


 
Thread Tools Search this Thread
Operating Systems AIX AIX Query
# 1  
Old 07-13-2016
AIX Query

Can anyone tell me what the syntax :.: in a script means??

Thanks in advance

Last edited by fergalmur; 07-13-2016 at 12:38 PM..
# 2  
Old 07-13-2016
Could you maybe show at least the whole line? Use code tags when posting it, thanks.
# 3  
Old 07-13-2016
Code:
export PATH=/u01/app/oracle/product/10.2.0/sqr85/bin/SQR/Server/Oracle/bin:/usr/
bin:/etc:/usr/sbin:/usr/ucb:/home/*****/progs/bin:/usr/bin/X11:/sbin:.:/usr/ccs
/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/usr/bin/X11:/sbin:/u01/app/oracle/product

Moderator's Comments:
Mod Comment I asked for code tags and by signing up in the forum you accepted to use them. Ignoring this constantly will gain you infraction Points.

Last edited by zaxxon; 07-15-2016 at 03:40 AM..
# 4  
Old 07-13-2016
The : are just separators. The values in between are paths, as the name of the variable PATH says.
The . is the current directory.
Exporting this will allow to call executable files from your current working directory.

Check this too:
Why is it Bad Idea to insert "." (Dot) to PATH ?
These 2 Users Gave Thanks to zaxxon For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Will it affect my AIX LPAR security, when i set up email alerts on AIX server.

Hello, I've set up email alerts on AIX Servers. so that i can get email notifications (via mail relay server) when ever there is abnormal behavior. for example 1) my script monitors CPU/disk/memory etc... when it reaches high water ark, it will send an email alert. 2) disk usage alerts 3)... (5 Replies)
Discussion started by: System Admin 77
5 Replies

2. AIX

Nim on AIX 7.1 used to migrate AIX 5.3 to AIX 6.1...is possible?

Using nimadm: nimadm -j nimadmvg -c sap024 -s spot_6100 -l lpp_6100 -d "hdisk1" -Y Initializing the NIM master. Initializing NIM client sap024. 0505-205 nimadm: The level of bos.alt_disk_install.rte installed in SPOT spot_6100 (6.1.3.4) does not match the NIM master's level (7.1.1.2).... (2 Replies)
Discussion started by: sciacca75
2 Replies

3. UNIX for Dummies Questions & Answers

Query: How to install commercial cert into AIX and use it for FTPS connection

Hi Techies, I wish to check with everyone here something regarding Configuration of FTPS Server in AIX using Commercial Digital Cert instead of Sel Sign Cert. I'm working as system integration designer and I'm currently working on a interface which involves integration btw two systems using... (6 Replies)
Discussion started by: mkmuraly
6 Replies

4. Shell Programming and Scripting

Shell Script to execute Oracle query taking input from a file to form query

Hi, I need to query Oracle database for 100 users. I have these 100 users in a file. I need a shell script which would read this User file (one user at a time) & query database. For instance: USER CITY --------- ---------- A CITY_A B CITY_B C ... (2 Replies)
Discussion started by: DevendraG
2 Replies

5. Shell Programming and Scripting

Query Oracle tables and return values to shell script that calls the query

Hi, I have a requirement as below which needs to be done viz UNIX shell script (1) I have to connect to an Oracle database (2) Exexute "SELECT field_status from table 1" query on one of the tables. (3) Based on the result that I get from point (2), I have to update another table in the... (6 Replies)
Discussion started by: balaeswari
6 Replies

6. AIX

AIX chdev sys0 query

Hi all chdev -l sys0 -a fullcore=flase In the above command please explain why this command is use.and what is the default value of sys0 Also it would be good if someone can elaborate on the 'sys0' thing. Thanks (3 Replies)
Discussion started by: panther20091
3 Replies

7. AIX

AIX custom package install query

I have created a .bff package for an app to tbe installed on AIX servers across regions. I am pretty new to the AIX mode of packaging using mkinstallp but I have been able to get the same done. I installed the same on the server in which i created the package and the application was deployed... (9 Replies)
Discussion started by: jobbyjoseph
9 Replies

8. Shell Programming and Scripting

add the output of a query to a variable to be used in another query

I would like to use the result of a query in another query. How do I redirect/add the output to another variable? $result = odbc_exec($connect, $query); while ($row = odbc_fetch_array($result)) { echo $row,"\n"; } odbc_close($connect); ?> This will output hostnames: host1... (0 Replies)
Discussion started by: hazno
0 Replies

9. AIX

IBM AIX 5.3 Query (v_node hold count ?)

Hi , I was reading AIX's Kernel Subsystem manual where I read about vn_hold, vn_rele, vn_lookup. I have few queries about them. According to manual vn_hold "The vn_hold entry point increments the v_count field, the hold count on the v-node, and the v-node's underlying g-node (generic node). This... (0 Replies)
Discussion started by: Amit Dang
0 Replies

10. AIX

Linking query in AIX

Hi, Can we link to 2 libraries out of which one is compiled with version 5 and other with version 6. version 6 used AIX 5.0 Version 5 used AIX 4.3 Will there be any runtime problems because of this ( If it goes through linking step )? Thanks , Suman (2 Replies)
Discussion started by: suman_jakkula
2 Replies
Login or Register to Ask a Question