empty dit


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting empty dit
# 1  
Old 08-04-2002
empty dit

can anyone tell me how i can see if a directory contains no files
thus is empty
i use bash
# 2  
Old 08-04-2002
man ls
man wc
Code:
ls -la | wc -l

This will include the "." and ".." directories too.
# 3  
Old 08-04-2002
thank you but i think i made a wrong expression
i want to test if a directory is empty.
has nofiles in it
excuse me for the confusion
# 4  
Old 08-05-2002
If you are looking for code:

Code:
#! /bin/ksh

tot_files=`ls -la | wc -l`

if [ $tot_files -ge 2 ]
then
        echo " DIR not empty"
else
        echo " DIR empty"
fi

# 5  
Old 08-05-2002
thx now i see where it is getting at

THANK YOU for your reply
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

if/else with an empty file...

Hi there, I'm just starting out with shell scripting and I'm trying to make a test where the script will basically run yum check-update to find out if the server has any available and if it does it e-mails me but if not it will just stop there. I have it working if there are actually... (7 Replies)
Discussion started by: Imnewtothis
7 Replies

2. Shell Programming and Scripting

Need help If empty - perl

Hi, I need help if I list all the file that determined by user input and if program cannot find file it will display " there no file that you looking for " here is my code but it not working #!/usr/bin/perl -w print "Enter Advance Search Function: "; chomp ($func = <STDIN>); my @func1 =... (2 Replies)
Discussion started by: guidely
2 Replies

3. Shell Programming and Scripting

Empty out the file

Hi All, I have a piece of perl code in which I DON'T want to delete a file rather empty out the contents, here is the code - if ( unlink("$opt_b") == 1 ) { print_log( "$opt_b deleted", 1 ); }else { print_log( "Could not delete $opt_b:$!", 1 ); ... (5 Replies)
Discussion started by: jacki
5 Replies

4. Shell Programming and Scripting

empty crontab

how to create empty crontab using shell script? (7 Replies)
Discussion started by: crackthehit007
7 Replies

5. Shell Programming and Scripting

while file is empty

how can i use while loop ? while file is empty do.... if not empty do ..... in bash (1 Reply)
Discussion started by: Trump
1 Replies

6. Shell Programming and Scripting

Need to empty

Hi, How can I empty the files of *.txt.... in one command. (6 Replies)
Discussion started by: gsiva
6 Replies

7. Shell Programming and Scripting

while var not empty

Hi! How can I run a cicle while one var is not empty? Or better saying how can I see if the var has something? thanks (1 Reply)
Discussion started by: ruben.rodrigues
1 Replies

8. UNIX for Dummies Questions & Answers

Getting same exit status for empty and non empty file

Hi All, I am checking for a empty input file to do some further action , but I am getting exit status 0 in both the cases , for empty and non empty file both. The value of $? is coming 0 in if part also and else part too. #!/bin/ksh if ]; then echo "data" # exit 0 echo "$?" else... (4 Replies)
Discussion started by: mavesum
4 Replies

9. UNIX for Dummies Questions & Answers

how to find empty folders without using -empty

hi all: my solaris FIND does not support find myFolder -type d -empty how can i find the empty folders? thanks! (7 Replies)
Discussion started by: lasse
7 Replies

10. UNIX for Advanced & Expert Users

empty file in hp-ux

Hi, I need your help. How can I create an empty filename with a specific size, in hp-ux? Regards, Mizi (2 Replies)
Discussion started by: Mizi
2 Replies
Login or Register to Ask a Question