Sponsored Content
Top Forums UNIX for Advanced & Expert Users List the files in a directory Post 302399948 by thillai_selvan on Tuesday 2nd of March 2010 02:31:07 AM
Old 03-02-2010
Code:
for files in `find . -maxdepth 1 -type f`
do
        if [ "$(grep -c "\n" $files)" -ge 1 ]
        then
                echo $files
        fi
done

You can use the above code also for getting the files which are all having the number of lines more than one
 

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. Homework & Coursework Questions

List Files and Directory

Use and complete the template provided. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data i need to list all files in date/time order that contain the word "alpha" but not the the word "beta". 2. Relevant equations find or ls ... (7 Replies)
Discussion started by: jeht
7 Replies

5. 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

6. 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

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
MKFONTDIR(1)						      General Commands Manual						      MKFONTDIR(1)

NAME
mkfontdir, fonts.dir, fonts.scale, fonts.alias - create an index of X font files in a directory SYNOPSIS
mkfontdir [directory-name ... ] DESCRIPTION
For each directory argument, mkfontdir reads all of the font files in the directory searching for properties named "FONT", or (failing that) the name of the file stripped of its suffix. These are converted to lower case and used as font names, and, along with the name of the font file, are written out to the file "fonts.dir" in the directory. The X server and font server use "fonts.dir" to find font files. The kinds of font files read by mkfontdir depend on configuration parameters, but typically include PCF (suffix ".pcf"), SNF (suffix ".snf") and BDF (suffix ".bdf"). If a font exists in multiple formats, mkfontdir will first choose PCF, then SNF and finally BDF. The first line of fonts.dir gives the number of fonts in the file. The remaining lines list the fonts themselves, one per line, in two fields. First is the name of the font file, followed by a space and the name of the font. SCALABLE FONTS
Because scalable font files do not usually include the X font name, the file "fonts.scale" can be used to name the scalable fonts in the directory. The fonts listed in it are copied to fonts.dir by mkfontdir. "fonts.scale" has the same format as the "fonts.dir" file. FONT NAME ALIASES
The file "fonts.alias", which can be put in any directory of the font-path, is used to map new names to existing fonts, and should be edited by hand. The format is two white-space separated columns, the first containing aliases and the second containing font-name pat- terns. Lines beginning with "!" are comment lines and are ignored. If neither the alias nor the value specifies the size fields of the font name, this is a scalable alias. A font name of any size that matches this alias will be mapped to the same size of the font that the alias resolves to. When a font alias is used, the name it references is searched for in the normal manner, looking through each font directory in turn. This means that the aliases need not mention fonts in the same directory as the alias file. To embed white space in either name, simply enclose it in double-quote marks; to embed double-quote marks (or any other character), precede them with back-slash: "magic-alias with spaces" ""font name" with quotes" regular-alias fixed If the string "FILE_NAMES_ALIASES" stands alone on a line, each file-name in the directory (stripped of its suffix) will be used as an alias for that font. FILES
fonts.dir List of fonts in the directory and the files they are stored in. Created by mkfontdir. Read by the X server and font server each time the font path is set (see xset(1)). fonts.scale List of scalable fonts in the directory. Contents are copied to fonts.dir by mkfontdir. fonts.alias List of font name aliases. Read by the X server and font server each time the font path is set (see xset(1)). SEE ALSO
X(1), Xserver(1), xfs(1), xset(1) X Version 11 Release 6.1 MKFONTDIR(1)
All times are GMT -4. The time now is 03:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy