GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- About the script
Operating System - HP-UX
1843946
Members
3033
Online
110226
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2004 07:24 PM
08-20-2004 07:24 PM
sorry to answer this simple question , as I don't know how to use the shell script .
I got the below script , could help to find out what is TEMP ? thx.
TEMP =`awk -F= '/tmp$/ { print $2 }' /home/abc`'
#vi /home/abc
aa bb
cc dd
ee ff
gg hh
ii jj
I got the below script , could help to find out what is TEMP ? thx.
TEMP =`awk -F= '/tmp$/ { print $2 }' /home/abc`'
#vi /home/abc
aa bb
cc dd
ee ff
gg hh
ii jj
Solved! Go to Solution.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2004 10:15 PM
08-20-2004 10:15 PM
Solution
$TEMP variable will be NULL.
And more try to use as,
TEMP=`awk -F= '/tmp$/ { print $2 }' /home/abc`'
No space between TEMP and =
Your awk program and examples are not related.
Awk will try to break fields with separator as "=" and with pattern occurance of tmp at end so that it will give the second field.
For example:
hai=bye=tmp
echo "hai=bye=tmp" | awk -F= '/tmp$/ { print $2 }'
will print bye string there.
And more as like,
--- example ---
cat > /tmp/test
hai=bye=tmp
1=234=tmp
user=test=bye
TEMP=`awk -F= '/tmp$/ { print $2 }' /tmp/test`;echo $TEMP
Output:
bye 234
HTH.
+muthu+
And more try to use as,
TEMP=`awk -F= '/tmp$/ { print $2 }' /home/abc`'
No space between TEMP and =
Your awk program and examples are not related.
Awk will try to break fields with separator as "=" and with pattern occurance of tmp at end so that it will give the second field.
For example:
hai=bye=tmp
echo "hai=bye=tmp" | awk -F= '/tmp$/ { print $2 }'
will print bye string there.
And more as like,
--- example ---
cat > /tmp/test
hai=bye=tmp
1=234=tmp
user=test=bye
TEMP=`awk -F= '/tmp$/ { print $2 }' /tmp/test`;echo $TEMP
Output:
bye 234
HTH.
+muthu+
Easy to suggest when don't know about the problem!
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP