Sponsored Content
Full Discussion: awk print used space
Top Forums Shell Programming and Scripting awk print used space Post 302776271 by busyboy on Wednesday 6th of March 2013 06:10:45 AM
Old 03-06-2013
based on your input:

Code:
 awk '/total allocated/ { TOAL=TOAL+$(NF-3) } /free allocated/ { FRAL=FRAL+$1; }
/used allocated/ { USAL=USAL+$1; }
END { printf("TOTAL Allocated:%s KB ,USED Allocated: %s KB,FREE Allowcated:%s KB\n",TOAL,USAL,FRAL) }' filename
TOTAL Allocated:3089801 KB ,USED Allocated: 83393 KB,FREE Allowcated:110208 KB


Last edited by busyboy; 03-06-2013 at 07:19 AM.. Reason: instead of $4, try using $(NF-3)
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

print disk space warning of 70%

Hi All, I have a script that run every night to check disk space. echo "Warning: Disk with 70%~79% used" && df -k | grep .% I want the echo should go out only if there's a FS usage findings of 70%+. I want a simple shell script, not with if and then script. Thank you for any comments... (1 Reply)
Discussion started by: itik
1 Replies

2. Shell Programming and Scripting

way to print all the string till we get a space and a number

Is there any way to print all the string till we get a space and a number and store it a variable for eg we have string java.io.IOException: An existing connection was forcibly closed by the remote host 12 All I want is to store "java.io.IOException: An existing connection was forcibly closed... (13 Replies)
Discussion started by: villain41
13 Replies

3. Shell Programming and Scripting

Find a pattern and print next all character to next space

Hi, I have a big inventory file that is NOT sorted is any way. The file is have "tagged" information like the ip address "*IP=" or the name "*NM=" . How do I get just the ip address or the name and not the whole line? I have tried to use AWK without any success. I always get the whole line... (8 Replies)
Discussion started by: pierrebjarnfelt
8 Replies

4. Shell Programming and Scripting

awk or sed command to print specific string between word and blank space

My source is on each line 98.194.245.255 - - "GET /disp0201.php?poc=4060&roc=1&ps=R&ooc=13&mjv=6&mov=5&rel=5&bod=155&oxi=2&omj=5&ozn=1&dav=20&cd=&daz=&drc=&mo=&sid=&lang=EN&loc=JPN HTTP/1.1" 302 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR... (5 Replies)
Discussion started by: elamurugu
5 Replies

5. Shell Programming and Scripting

awk until blank space and print next line

Hello and Happy New Year 2012! I have this example: 1,2,3 4,5,6 7,8,9 For that, I'm trying to get: 1,2,3 4,5,6 7,8,9 for that, I think this might work but doesnt work so far: awk '{for(i=1;i=NF;i++);sub(/\//,"",$i);print $i}' myfile (2 Replies)
Discussion started by: Gery
2 Replies

6. UNIX for Dummies Questions & Answers

disregarding space when using awk print

Hi guys, I have this output, wherein the device is variable and changing values Device Identifier Type Dir:P ------ ---------------- ----- ---------------- 3065 10000000c986cdb0 FIBRE FA-10A:1 10000000c9866716 FIBRE FA-11A:1 I want to filter column 2 which... (9 Replies)
Discussion started by: prodigy06
9 Replies

7. Shell Programming and Scripting

Print pattern regardless of space between

I have this content in file sshd : ALL : allow SSHD : all : ALLOW sshD : All : AllOW What I need is to print the occurrence of "sshd:all" regardless of the spaces between them and if lower/upper case. So all lines should be printed in output when "grepped" or "printed... (3 Replies)
Discussion started by: anil510
3 Replies

8. UNIX for Advanced & Expert Users

Need to remove leading space from awk statement space from calculation

I created a awk state to calculate the number of success however when the query runs it has a leading zero. Any ideas on how to remove the leading zero from the calculation? Here is my query: cat myfile.log | grep | awk '{print $2,$3,$7,$11,$15,$19,$23,$27,$31,$35($19/$15*100)}' 02:00:00... (1 Reply)
Discussion started by: bizomb
1 Replies

9. Shell Programming and Scripting

Print 1 to 10 with space in shell script

Hi, I want to print 1 to 10 or upto any number sequentially with space in a single line. Like, 1 2 3 4 5 6 7 ...... In shell script only.. Can anyone plz help me. Thanks: (14 Replies)
Discussion started by: arup1980
14 Replies

10. Shell Programming and Scripting

Command to print columns with space

Hello I am trying to pull specific columns from an output file that contains spaces and make it a variable.. Here is a piece of the output file and my command: Host1 UNIX /vol/volume/my stuff When I pull in the data into my variable the word stuff is left off - I need this as part of my... (10 Replies)
Discussion started by: fmalvest
10 Replies
priv_getbyname(9F)					   Kernel Functions for Drivers 					priv_getbyname(9F)

NAME
priv_getbyname - map a privilege name to a number SYNOPSIS
#include <sys/cred.h> int priv_getbyname(const char *priv, int flags); INTERFACE LEVEL
Solaris DDI specific (Solaris DDI). PARAMETERS
priv name of the privilege flags flags, must be zero or PRIV_ALLOC DESCRIPTION
The priv_getbyname() function maps a privilege name to a privilege number for use with the priv_*() kernel interfaces. If PRIV_ALLOC is passed as a flag parameter, an attempt is made to allocate a privilege if it is not yet defined. The newly allocated priv- ilege number is returned. Privilege names can be specified with an optional priv_ prefix, which is stripped. Privilege names are case insensitive but allocated privileges preserve case. Allocated privileges can be at most {PRIVNAME_MAX} characters long and can contain only alphanumeric characters and the underscore charac- ter. RETURN VALUES
This function returns the privilege number, which is greater than or equal to 0, if it succeeds. It returns a negative error number if an error occurs. ERRORS
EINVAL This might be caused by any of the following o The flags parameter is invalid. o The specified privilege does not exist. o The priv parameter contains invalid characters. ENOMEM There is no room to allocate another privilege. ENAMETOOLONG An attempt was made to allocate a privilege that was longer than {PRIVNAME_MAX} characters. CONTEXT
This functions can be called from user and kernel contexts. ATTRIBUTES
See attributes(5) for a description of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Architecture |All | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ SEE ALSO
attributes(5), privileges(5) Writing Device Drivers SunOS 5.10 11 Mar 2004 priv_getbyname(9F)
All times are GMT -4. The time now is 02:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy