Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
01-07-2006, 11:32 PM
|
#1
|
Member
Registered: Nov 2003
Location: Huntsville, AL
Distribution: RHEL, Solaris, OSX, SuSE
Posts: 419
Rep:
|
Finding gaps with 'ls' or some other command
I'm trying to figure out how to find the gaps in a list of file in one of my directories. I have a list of file from 001.txt to 799.txt and I'm trying to figure out how to find any gap in numbers besides counting them one by one.
Anyone know of a way I can do this?
Last edited by mijohnst; 01-07-2006 at 11:35 PM.
|
|
|
01-08-2006, 02:39 AM
|
#2
|
Member
Registered: Jan 2005
Posts: 178
Rep:
|
for i in `seq -w 001 799`
do
if test ! -f $i.txt; then
echo "$i.txt is missing"
fi
done
Last edited by T.Hsu; 01-08-2006 at 02:41 AM.
|
|
|
01-08-2006, 03:26 AM
|
#3
|
Member
Registered: Nov 2005
Distribution: Arch Linux
Posts: 84
Rep:
|
Quote:
Originally Posted by T.Hsu
for i in `seq -w 001 799`
do
if test ! -f $i.txt; then
echo "$i.txt is missing"
fi
done
|
Don't you just love shell scripting  Thanks for the code, I was wondering how you wouldaccomplish this also.
|
|
|
01-08-2006, 08:32 AM
|
#4
|
Member
Registered: Jan 2005
Posts: 178
Rep:
|
Sorry for my poor English comprehension  , "gap in numbers" means numerical range like "005 - 010"? then;
Code:
#!/bin/bash
num1=1
num2=$[num1+1]
while [[ num1 -lt 799 ]] ; do
if [ ! -f `printf "%003d" $num1`.txt ]; then
until [ -f `printf "%003d" $num2`.txt ]; do
num2=$[num2+1]
done
if [ $num1 != $[num2-1] ]; then
echo `printf "%003d" $num1`.txt to `printf "%003d" $[num2-1]`.txt are missing.
else
echo `printf "%003d" $num1`.txt is missing.
fi
num1=$num2
fi
num1=$[num1+1]
num2=$[num1+1]
done
Last edited by T.Hsu; 01-08-2006 at 09:20 PM.
|
|
|
01-08-2006, 10:49 PM
|
#5
|
Member
Registered: Nov 2003
Location: Huntsville, AL
Distribution: RHEL, Solaris, OSX, SuSE
Posts: 419
Original Poster
Rep:
|
You all are awesome... Thank you so much!
|
|
|
01-09-2006, 05:59 PM
|
#6
|
Member
Registered: Nov 2003
Location: Huntsville, AL
Distribution: RHEL, Solaris, OSX, SuSE
Posts: 419
Original Poster
Rep:
|
I was looking for a way to do the same to directories... I changed the -f to -d and worked great! Thanks so much!
Last edited by mijohnst; 01-09-2006 at 06:33 PM.
|
|
|
All times are GMT -5. The time now is 10:14 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|