Sponsored Content
Full Discussion: List Files and Directory
Homework and Emergencies Homework & Coursework Questions List Files and Directory Post 302332789 by zaxxon on Friday 10th of July 2009 04:52:03 AM
Old 07-10-2009
I guess lathavim has a type - he wanted to write -lt instead of -ll.
Nevertheless you can add -r to switch between ascendind descending sort.

Code:
$> ls -la
insgesamt 8
drwxr-xr-x 2 isau users 4096 2009-07-10 10:37 .
drwxr-xr-x 6 isau users 4096 2009-05-19 10:24 ..
-rw-r--r-- 1 root root     0 2009-03-02 10:05 aaalphaaa
-rw-r--r-- 1 root root     0 2009-07-10 10:37 aalphaa
-rw-r--r-- 1 root root     0 2009-03-02 10:01 alpha
-rw-r--r-- 1 root root     0 2009-03-02 10:04 bbetaa
-rw-r--r-- 1 root root     0 2009-03-02 10:00 beta
-rw-r--r-- 1 root root     0 2009-07-10 10:37 bla
-rw-r--r-- 1 root root     0 2009-03-02 10:02 blub
-rw-r--r-- 1 root root     0 2009-03-02 10:03 cccetaaa
-rw-r--r-- 1 root root     0 2009-07-10 10:36 infile
-rw-r--r-- 1 root root     0 2009-03-02 10:06 lala
$> ls -lt *alpha*
-rw-r--r-- 1 root root 0 2009-07-10 10:37 aalphaa
-rw-r--r-- 1 root root 0 2009-03-02 10:05 aaalphaaa
-rw-r--r-- 1 root root 0 2009-03-02 10:01 alpha
$> ls -ltr *alpha*
-rw-r--r-- 1 root root 0 2009-03-02 10:01 alpha
-rw-r--r-- 1 root root 0 2009-03-02 10:05 aaalphaaa
-rw-r--r-- 1 root root 0 2009-07-10 10:37 aalphaa

The grep is not really needed - wildcards/metas are sufficient.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

list of files in one Directory

hi All, How do I get list of all the files in one directory. Thanks in advance, Venky. (3 Replies)
Discussion started by: venkyA
3 Replies

2. UNIX for Dummies Questions & Answers

cp list of files into another directory

Hi All, i am trying to copy files from a directory to another. here is what I am doing ls -ltr INTER* THE output is list of 80 files. i have to copy all these 80 files into another directory ( say /home/pavi/folder) at a time. can anyone please suggest me how do I do it. thanks pavi (4 Replies)
Discussion started by: pavan_test
4 Replies

3. UNIX for Dummies Questions & Answers

Find files and display only directory list containing those files

I have a directory (and many sub dirs beneath) on AIX system, containing thousands of file. I'm looking to get a list of all directory containing "*.pdf" file. I know basic syntax of find command, but it gives me list of all pdf files, which numbers in thousands. All I need to know is, which... (4 Replies)
Discussion started by: r7p
4 Replies

4. Shell Programming and Scripting

find list of files from a list and copy to a directory

I will be very grateful if someone can help me with bash shell script that does the following: I have a list of filenames: A01_155716 A05_155780 A07_155812 A09_155844 A11_155876 that are kept in different sub directories within my current directory. I want to find these files and copy... (3 Replies)
Discussion started by: manishabh
3 Replies

5. Shell Programming and Scripting

List files in a directory

Hi Experts, I need to list the files in a directory which have more than one lines Please help Thanks (1 Reply)
Discussion started by: gwrm
1 Replies

6. UNIX for Advanced & Expert Users

List the files in a directory

Hi Experts, I need to list the files in a directory which have more than one lines All the files are csv format Please help Thanks (5 Replies)
Discussion started by: gwrm
5 Replies

7. UNIX for Dummies Questions & Answers

list all files in a directory

how do I list all files in a directory, showing only the name and the modification date and sorting them by their name? thanks (3 Replies)
Discussion started by: qparedes
3 Replies

8. UNIX for Dummies Questions & Answers

List the files in directory

hi, i have so many files in my directory. for example $: ls abc.12 abc.23 abc.45 abc.56 abc.123 abc.343 abc.567 abc.345 like this. from this list, how to display only the files which ends with two numbers. If i give abc.*, it displays all the files. (2 Replies)
Discussion started by: JSKOBS
2 Replies

9. Shell Programming and Scripting

Copy list of files from a keyword list to another directory

Hello, I have a folder with a massive amount of files, and I want to copy out a specific subset of the files to a new directory. I would like to use a text file with the filenames listed, but can't get it to work. The thing I'm hung up on is that the folder names in the path can and do have... (5 Replies)
Discussion started by: twjolson
5 Replies

10. Shell Programming and Scripting

List files with date, create directory, move to the created directory

Hi all, i have a folder, with tons of files containing as following, on /my/folder/jobs/ some_name_2016-01-17-22-38-58_some name_0_0.zip.done some_name_2016-01-17-22-40-30_some name_0_0.zip.done some_name_2016-01-17-22-48-50_some name_0_0.zip.done and these can be lots of similar files,... (6 Replies)
Discussion started by: charli1
6 Replies
dsenableroot(8) 					    BSD System Manager's Manual 					   dsenableroot(8)

NAME
dsenableroot -- enables or disables the root account. SYNOPSIS
dsenableroot [-d] [-u username] [-p password] [-r rootPassword] DESCRIPTION
dsenableroot sets the password for the root account if enabling the root user account. Otherwise, if disable [-d] is chosen, the root account passwords are removed and the root user is disabled. A list of flags and their descriptions: -u username Username of a user that has administrative privileges on this computer. -p password Password to use in conjunction with the specified username. If this is not specified, you will be prompted for entry. -r rootPassword Password to be used for the root account. If this is not specified for enabling, you will be prompted for entry. EXAMPLES
-dsenableroot Your username will be used and you will be queried for both your password and the new root password to be set to enable the root account. -dsenableroot -d Your username will be used and you will be queried for only your password to disable the root account. -dsenableroot -u username -p userpassword -r rootpassword The supplied arguments will be used to enable the root account. -dsenableroot -d -u username -p userpassword The supplied arguments will be used to disable the root account. Mac OS August 08 2003 Mac OS
All times are GMT -4. The time now is 10:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy