Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6720831
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:15:29+00:00 2026-05-26T09:15:29+00:00

I want to write a script that fills a directory with music until there’s

  • 0

I want to write a script that fills a directory with music until there’s a certain amount of space left. The directory may be on various partitions and I don’t know how to ask a directory for free space or it’s partition.

pseudocode
fill(directory)
  until < 100 mb of free space in directory
    copy music to directory

How would you do it using unix tools like bash, find, etc.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:15:30+00:00Added an answer on May 26, 2026 at 9:15 am

    I assume you mean you have a specific directory, on a specific partition that you wish to fill until there is only 100 MB left.

    The df command will return the amount of disk space left on a given directory’s disk/partition.

    df musicfolder/
    

    The fourth column will give free space

    Filesystem           1K-blocks      Used Available Use% Mounted on
    /dev/sda1            151733412  24153792 119871924  17% /
    

    you can use awk to gain the fourth column value and ignore the headers. So your script will be something like:

    freespace=$(df /musicfolder | awk 'FNR>1{print $4}')
    
    while [ $freespace -gt 10000000 ] ; do
        (copy files from wherever)
        freespace=$(df ~/musicfolder | awk 'FNR>1{print $4}')
    done
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write a PowerShell script that will recursively search a directory, but
I want to write a bash script that I can run in a directory
I want to write a script that disable all the submit buttons when the
I want to write a script that will stop a scheduled task on a
I want to write a php script that keeps the apache_log file open and
Let's say there are two python scripts that want to write data to the
I want to write simple script to copy/backup directory then remove on server startup.
I want to write a python script (Yes not Bash) that will use flac
I have to write a script that finds all executable files in a directory.
I just want a simple tool that will help me quickly write scripts/packages that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.