Sponsored Content
Full Discussion: using ls -lrt instead of ls
Top Forums UNIX for Dummies Questions & Answers using ls -lrt instead of ls Post 302344075 by Corona688 on Friday 14th of August 2009 01:56:13 PM
Old 08-14-2009
The -r flag just reverses the sort, it will still have the skip. Since they're being added continuously, I'm assuming they have sequential timestamps, so if you are using GNU ls, try the --sort=time option, which will sort by time instead of filename.

The performance issue is that, if there are thousands of files -- which there probably are -- it crams them all into one shell variable before continuing. This is slow and may even truncate the list if it is too large. Try something like this instead, piping it:
Code:
ls --sort=time $SAPRESPONSEGOFILE | sed "s/go/dat/g" |
while read SAPRESPONSEFILES
do
  echo "File is ${SAPRESPONSEFILES}"
done

If the performance is too slow you could use shell string manipulation to replace go with dat and leave out sed.

If there are still performance issues with ls, then your directory is too huge, the problem is not ls in particular but rather the rapid statting and sorting of thousands of files in general.
 

6 More Discussions You Might Find Interesting

1. HP-UX

sem_open(), -lrt and creating a library

I am on HP-UX delta B.11.11 I am using sem_open() and compiling/linking the library by specifying -lrt. Then, I am creating library like below: ar cr $libdir/liboscfe.a `cat fe.libs.$$ com.libs.$$` ranlib $libdir/liboscfe.a Now, I am compiling another utility sch2db which requires this... (1 Reply)
Discussion started by: apadha
1 Replies

2. Shell Programming and Scripting

find command nonrecurslu listing ls -lrt

---------------------------------------------------------------------- I have tried find . type -f -exec ls -lrt {} \; but it listed files recursively ,I need only that dir files not internal dir file. --------------------------------------------------------------------- (8 Replies)
Discussion started by: RahulJoshi
8 Replies

3. UNIX for Dummies Questions & Answers

" ls -lrt " not working ! --- Need a insight from a expert .

Hi ! All This might be a silly question.. to experts in unix. but defintely its a interesting question and I want to know the root cause. Here is the problem.... I have a Linux OS box. It has diff files systems. When I go to a DIR like this /RootDIR/NFS/myDIR and give ls -lart .. it... (4 Replies)
Discussion started by: dashok.83
4 Replies

4. Shell Programming and Scripting

Problems with ls -lrt

I am doing ls -lrt and it does not respond and have to close the xterm ls works ok (4 Replies)
Discussion started by: kristinu
4 Replies

5. Shell Programming and Scripting

want to concatenate multiple files based on the rest of ls -lrt

uadm@4132> ls -lrt -rw------- 1 uadm uadm 3811819 Jun 6 04:08 data_log-2010.05.30-10:04:08.txt -rw------- 1 uadm uadm 716246 Jun 13 01:38 data_log-2010.06.06-10:04:08.txt -rw------- 1 uadm uadm 996 Jun 13 04:00 data_log-2010.06.06-10:04:22.txt -rw------- 1 uadm uadm 7471 Jun 20 02:03... (5 Replies)
Discussion started by: mail2sant
5 Replies

6. UNIX for Dummies Questions & Answers

What does total no. of files in ls -lrt o/p means?

when we fire ls -lrt command we see o/p as total 16 drwx------ 9 root root 8192 May 8 2002 lost+found drwxr-xr-x 2 root root 512 Jun 14 2002 TT_DB drwxrwxr-x 2 root root 512 Jul 31 2002 mail here total no. of files is always greater than... (4 Replies)
Discussion started by: Jcpratap
4 Replies
SEM_CLOSE(3)						     Linux Programmer's Manual						      SEM_CLOSE(3)

NAME
sem_close - close a named semaphore SYNOPSIS
#include <semaphore.h> int sem_close(sem_t *sem); Link with -lrt or -pthread. DESCRIPTION
sem_close() closes the named semaphore referred to by sem, allowing any resources that the system has allocated to the calling process for this semaphore to be freed. RETURN VALUE
On success sem_close() returns 0; on error, -1 is returned, with errno set to indicate the error. ERRORS
EINVAL sem is not a valid semaphore. CONFORMING TO
POSIX.1-2001. NOTES
All open named semaphores are automatically closed on process termination, or upon execve(2). SEE ALSO
sem_getvalue(3), sem_open(3), sem_post(3), sem_unlink(3), sem_wait(3), sem_overview(7) COLOPHON
This page is part of release 3.25 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2006-03-25 SEM_CLOSE(3)
All times are GMT -4. The time now is 06:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy