Need Generic command for disk space usage


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need Generic command for disk space usage
# 1  
Old 08-29-2016
Need Generic command for disk space usage

Given this directory /web

I need to get the current usage (in %) on Linux and Unix both using the same command on bash shell ?

The command i tried was working on Unix (solaris) but does not filter the desired same value when run of Linux.

My command df -h /web | awk '{print $5}' | sed -n '2p'

Can you help me with a generic command for both unix and linux?

Last edited by mohtashims; 08-29-2016 at 05:33 PM..
# 2  
Old 08-29-2016
What output do you get from:
Code:
df -Ph /web

on your Linux system? What Linux distribution are you using?

What output do you get from the commands:
Code:
/usr/xpg4/bin/df -Ph /web

and:
Code:
df -h /web

on your Solaris system? What Solaris release are you using?
This User Gave Thanks to Don Cragun For This Post:
# 3  
Old 08-30-2016
Please be aware that df prints results for file systems, NOT directories.
Is df aliased to sth. different on your linux system? On my system, your pipe in post#1 works as desired...
This User Gave Thanks to RudiC For This Post:
# 4  
Old 08-30-2016
You are such an Amazing expert ...

df -Ph resolved the issue.

I will provide more data you requested in the near future.
# 5  
Old 08-30-2016
df -Pk is most portable (e.g. works on Solaris 8) with a Posix PATH.
Print the 5th field
Code:
PATH=`getconf PATH`
df -kP /web | awk 'NR>1 {print $5}'

Print the 5th field without the % sign
Code:
df -kP /web | awk 'NR>1 {print $5+0}'

This User Gave Thanks to MadeInGermany For This Post:
# 6  
Old 08-30-2016
Quote:
Originally Posted by RudiC
Please be aware that df prints results for file systems, NOT directories.
Is df aliased to sth. different on your linux system? On my system, your pipe in post#1 works as desired...
I m looking for file systems only.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Generate disk space usage email alert

hi all members I have a shell script to generate disk space usage email alert if threshold is more than 80 %, now the requirement changed to keep sending alert emails for every 5% incremental usage ........ Any help would be greatly appreciated. ex - 80% , 85% ,90%,95%,100% we should get an... (6 Replies)
Discussion started by: anil529
6 Replies

2. Shell Programming and Scripting

Send Disk Space Usage Status via email

Hi Guys, Is there any way I can write a script that sends DISK SPACE USAGE STATUS via email once a week? Thanks, (5 Replies)
Discussion started by: g4v1n
5 Replies

3. Shell Programming and Scripting

Perl Script to find the disk usage and to delete the files which is consuming more space

Hi All, I have written a script to check the file system usage and to delete the files which is consuming more space.Please check whether the script is corrcet #Script Starts here #!/usr/local/bin/perl #Program to find the disk space and to delete the older files #Checks the type of OS... (8 Replies)
Discussion started by: arunkarthick
8 Replies

4. UNIX for Dummies Questions & Answers

Command to display the space usage (memory usage) of a specific directory.

Hi all, Can you please tell me the command, with which one can know the amount of space a specific directory has used. df -k . ---> Displays, the amount of space allocated, and used for a directory. du -k <dir name> - gives me the memory used of all the files inside <dir> But i... (2 Replies)
Discussion started by: abhisheksunkari
2 Replies

5. UNIX Desktop Questions & Answers

Issue with disk space usage

Issue with disk space usage I have the following line in my "df -h" output: Filesystem Size Used Avail Capacity Mounted on /dev/ad4s1a 496M 495M -39M 109% / What is the issue with having 9% excess utilisation? How can I find out what this partition is... (2 Replies)
Discussion started by: figaro
2 Replies

6. Shell Programming and Scripting

Disk Usage - Space Used

Hi all, FreeBSD7.1 @ sh. In a backup script I am trying to get the blocks used by the backup once completed. I am using the function: #!/bin/sh spaceused() { du -d 0 "${1}" | awk -F"+" '{ print $1 } } to return the blocks used of said directory and contents. Via. command line... (7 Replies)
Discussion started by: Festus Hagen
7 Replies

7. Shell Programming and Scripting

script to monitor disk space usage

Some times my disk space is used upto 100% due to the application logs . So this script is to monitor the disk space usage and wall message to the users about the disk space usage if it exceeds the limit set in the script. Here for example the limit is set to 80%. This job is added in cron to... (2 Replies)
Discussion started by: amitranjansahu
2 Replies

8. UNIX for Dummies Questions & Answers

how to determine the disk space usage

how can we determine the disk space used by a certain directory? (1 Reply)
Discussion started by: gfhgfnhhn
1 Replies

9. Shell Programming and Scripting

How do l test for carriage return & Disk space usage

Hi, I have just written a script in /bin/bash, however, l want to test if character is a carriage return or space. Also l want my script to be able to detect my disk space and send a mail if usage is more than 90% or send an alert. Thanks Kayode (6 Replies)
Discussion started by: kayode
6 Replies

10. UNIX for Dummies Questions & Answers

finding disk space usage

How would I go about finding the about of disk space occupied by a certain directory? For example, /u1/cvera => 530 MB Thanks =) (3 Replies)
Discussion started by: cvera8
3 Replies
Login or Register to Ask a Question