Restricting File List while doing ls


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Restricting File List while doing ls
# 1  
Old 03-12-2014
Restricting File List while doing ls

Is there any best way to restrict some of the listed files when you do ls. In the output i am doing grep -v wanted to see if i can use a better command to get this output.

Command:
Code:
[infrmtca@510146-DWDBDV01.farmcreditfunding.com]> ls -lrt wf_Load_25.log.INSTANCE_21_20072.*
-rw-r--r-- 1 infrmtca infrmtca 19373 Mar 12 14:14 wf_Load_25.log.INSTANCE_21_20072.1144.20140312141429.bin
-rw-r--r-- 1 infrmtca infrmtca 14149 Mar 12 14:14 wf_Load_25.log.INSTANCE_21_20072.1144.20140312141429

Output:
Code:
[infrmtca@510146-DWDBDV01.farmcreditfunding.com]> ls wf_Load_25.log.INSTANCE_21_20072.* | grep -v bin
wf_Load_25.log.INSTANCE_21_20072.1144.20140312141429

# 2  
Old 03-12-2014
Code:
ls -lrt wf_Load_25.log.INSTANCE_21_20072*[!bin]

This User Gave Thanks to Yoda For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Restricting use of su - (Solaris 11)

OK. So I can prevent remote systems from logging in as root by uncommenting the CONSOLE entry /etc/default/login. BUT, is there a way to stop su - (when already logged in as own user)? The way we do it is to set up sudoers so users who need access can do sudo su - (2 Replies)
Discussion started by: psychocandy
2 Replies

2. UNIX for Advanced & Expert Users

Restricting emails to particular domain name

Hello, I need to restrict the mails going from any codes to a particular domain. For example - No mail from any code should go to any email address with domain as abc.com - example - xyz@abc.com Do we have any way to do it? Thanks (2 Replies)
Discussion started by: shubh05
2 Replies

3. Shell Programming and Scripting

Restricting the merged file size to 1 GB

I am working on a problem in which I need to merge 4 files (say f1,f2,f3 & f4 log files) & then prepare a final file. 1) If the final file created has size more than 1 GB then need to throw error (display error). 2) Need to check after every merge (say f1 + f2, f1 + f2 + f3) that whether... (2 Replies)
Discussion started by: nrm
2 Replies

4. Shell Programming and Scripting

restricting users

how can i make my users to not use particular commands in the network like:wall....... pl z help me regarding this (1 Reply)
Discussion started by: yashwanthguru
1 Replies

5. UNIX for Dummies Questions & Answers

Restricting SSH usage

Hello, For one of our servers, we have had people trying to illegally loggon using the ssh service. My manager has asked me to restrict ssh access to users in our internal network but close ssh access to the "outside" world. Could someone at the very least point me to some resources on the... (7 Replies)
Discussion started by: mojoman
7 Replies

6. UNIX for Advanced & Expert Users

restricting root access

I'm the admin in a shop in which my developers have and use the root account, all UNIX newbies. I've been unable to convince management myself that this is an unacceptable practice. I've looked in a couple books I have and can't find any chapters, discussions, etc that make the argument that... (2 Replies)
Discussion started by: keith.m
2 Replies

7. Solaris

restricting access

Hi All, I'm on Solaris 8, I need to provide Read-only access to a user to 2 directories only. Using rsh (restricted shell) as the user's login shell, I can restrict the user's access to a certain directory only, but how can I set in such a way that the user can access only the 2 directories... (4 Replies)
Discussion started by: max_min
4 Replies

8. UNIX for Dummies Questions & Answers

Restricting Telnet to IPs

Dear Experts, Is it possible to restrict telnet to specific ips in Digital Unix Thanks (4 Replies)
Discussion started by: geraldwilson
4 Replies

9. UNIX for Dummies Questions & Answers

Restricting access

I need to create a user that only has access to 1 directory (e.g. /vol/mita/test). The user needs to be able to rsh into that directory to run a script. The user should not be able to navigate to any other directories above /vol/mita/test. Any help would be appreciated! (4 Replies)
Discussion started by: ngagne
4 Replies

10. Cybersecurity

restricting access...

restricted access... Hi I need to restrict users shell access to only $HOME under /home for each user. I don't want them getting out of their own directories. From what I understand chroot is something I could use, but I want to avoid this since it involves creating symbolic links to a number... (9 Replies)
Discussion started by: alwayslearningunix
9 Replies
Login or Register to Ask a Question