Not Listing Duplicate Backup Files


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Not Listing Duplicate Backup Files
# 1  
Old 06-09-2010
Not Listing Duplicate Backup Files

I've searched about a bit and more than likely, I'm not entering the correct search phrase, but my question is as follows:

When a user does an 'ls' (and whatever various flags needed) and in the results, we see duplicate or backup files from editing. IE:

file1.txt
file1.txt~

Is there a way to use 'ls' that does not show the *~ files?

Thanks gang!
# 2  
Old 06-09-2010
Code:
ls -B

(man ls)
# 3  
Old 06-09-2010
Code:
ls *.txt

or
Code:
ls | grep -v "~"

# 4  
Old 06-09-2010
Thanks gang!

The
Code:
ls -B

option had me going there for a bit thinking that after I did a 'man ls,' I completely missed it, but alas, it's not an option under my OS. Thought I was going koo-koo for cocoa puffs there for a moment.

The
Code:
ls | grep -v "~"

worked perfectly for what I am using this premise for, so thanks for your time folks.

I appreciate the simple, yet day-making tidbit.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

AIX find duplicate backup files

I would like find and delete old backup files in aix. How would I go about doing this? For example: server1_1-20-2020 server1_1-21-2020 server1_1-22-2020 server1_1-23-2020 server2_1-20-2020 server2_1-21-2020 server2_1-22-2020 server2_1-23-2020 How would I go about finding and... (3 Replies)
Discussion started by: cokedude
3 Replies

2. Shell Programming and Scripting

Listing the file name and no of records in each files for the files created on a specific day

Hi, I want to display the file names and the record count for the files in the 2nd column for the files created today. i have written the below command which is listing the file names. but while piping the above command to the wc -l command its not working for me. ls -l... (5 Replies)
Discussion started by: Showdown
5 Replies

3. AIX

Listing tape in AIX | backup taken from windows

Hi, We have backup on LTO-3 tape it was taken from windows via windows backup utility, now the issue is that we want to list the content of tape in aix 6.1. Kindly help. Regards Salman (3 Replies)
Discussion started by: salmanraza
3 Replies

4. SuSE

Listing files

Hi, This may be silly for some of you guys, but please guide me, I have the followin fies in my directory, root@unix:/onlineredo/XTT77 : ls -l total 4129992 -rw------- 1 XTT77 XTT77 10493952 Jul 28 2010 S0106839.LOG -rw------- 1 XTT77 XTT77 10493952 Jul 28 2010 S0106840.LOG... (3 Replies)
Discussion started by: suren1829
3 Replies

5. Shell Programming and Scripting

perl script for listing files and mailing the all files

Hi, I am new to perl: I need to write perl script to list all the files present in directory and mail should be come to my inbox with all the files present in that directory. advanced thanks for valuable inputs. Thanks Prakash GR (1 Reply)
Discussion started by: prakash.gr
1 Replies

6. UNIX for Dummies Questions & Answers

listing files

how would i list all files that began witha "t" and have any number of characters after the "t"? (2 Replies)
Discussion started by: trob
2 Replies

7. UNIX for Advanced & Expert Users

listing files excluding files from control file

I have a directory named Project.I have a control file which contains valid list of files.I would like list the files from directory Project which contains files other than listed in the control file. Sample control file: TEST SEND SFFFILE CONTL The directory contains followign... (15 Replies)
Discussion started by: ukatru
15 Replies

8. HP-UX

Listing the Ignite Backup tape

HI All I have created the bootable recovery tape using the ignite command make_tape_recovery, I need help for the command to list the content recorded in that tape. Regards, Gege:confused: (1 Reply)
Discussion started by: cgege
1 Replies

9. UNIX for Dummies Questions & Answers

Recursive directory listing without listing files

Does any one know how to get a recursive directory listing in long format (showing owner, group, permission etc) without listing the files contained in the directories. The following command also shows the files but I only want to see the directories. ls -lrtR * (4 Replies)
Discussion started by: psingh
4 Replies

10. UNIX for Dummies Questions & Answers

backup listing(cpio)

Hi i am using HPUX and i want to know wht is the command to see the listing from the tape device.. i have taken the backup using cpio -ocvB>/dev/rmt/0m while seeing the listing using cpio -itvB</dev/rmt/0m it is not showing the listing giving message -c option sd be there if i put -c... (1 Reply)
Discussion started by: Prafulla
1 Replies
Login or Register to Ask a Question