Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Count Number Of lines in text files and append values to beginning of file Post 302517817 by motoxeryz125 on Wednesday 27th of April 2011 11:19:56 PM
Old 04-28-2011
Thank you

Hello,

@ctsgnb: I wanted the program to count the number of lines in the original file, then, append the number of lines in the original file to the top of the new text file.

So, if the original file had 600 lines, the first line of the new file would say "there are 400 lines plus 200 bonus lines"

even though the new file would actually have 601 lines.

@Ilan and alister: Thank you for your ideas. I will implement them and let you know my results.

Thanks everyone, for your help and responses Smilie
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Count of Number of Lines in a File

Dear Members, I want to count the number of lines in a file; for that i am using the following command : FILE_LINE_COUNT=`wc -l $INT_IN/$RAW_FILE_NAME` if i do an echo on FILE_LINE_COUNT then i get 241 /home/data/testfile.txt I don't want the directory path to be displayed. Variable... (1 Reply)
Discussion started by: sandeep_1105
1 Replies

2. UNIX for Dummies Questions & Answers

Read directory files and count number of lines

Hello, I'm trying to create a BASH file that can read all the files in my working directory and tell me how many words and lines are in that file. I wrote the following code: FILES="*" for f in "$FILES" do echo -e `wc -l -w $f` done My issue is that my file is outputting in one... (4 Replies)
Discussion started by: jl487
4 Replies

3. UNIX for Dummies Questions & Answers

Comparing two files and count number of lines that match

Hello all, I always found help for my problems using the search option, but this time my request is too specific. I have two files that I want to compare. File1 is the index and File2 contains the data: File1: chr1 protein_coding exon 500 600 . + . gene_id "20532";... (0 Replies)
Discussion started by: DerSeb
0 Replies

4. Shell Programming and Scripting

perl script on how to count the total number of lines of all the files under a directory

how to count the total number of lines of all the files under a directory using perl script.. I mean if I have 10 files under a directory then I want to count the total number of lines of all the 10 files contain. Please help me in writing a perl script on this. (5 Replies)
Discussion started by: adityam
5 Replies

5. Shell Programming and Scripting

append delimeter count for each line in text file

Hi guys, plz tell me how to achieve this how to delete the lines in a file using sed command (6 Replies)
Discussion started by: hari908
6 Replies

6. Shell Programming and Scripting

Help with script to read lines from file and count values

Hi, I need some help with a script I'm trying to write. I have a log file containing references to a number of different webservices. I wish to write a script that will list the webservices with a count as to how many times they appear in the log. An example of the log file content: ... (2 Replies)
Discussion started by: gman2010
2 Replies

7. Shell Programming and Scripting

Count number of free lines in a text file

Hi Everybody I want to write a script to count the number of lines in a file that don't ahve any thing on it, the free lines, i try to do it with fgrep "" which means to grep on the spaces but it does not work. help me please? (3 Replies)
Discussion started by: hard_revenge
3 Replies

8. Shell Programming and Scripting

How to count number of files in directory and write to new file with number of files and their name?

Hi! I just want to count number of files in a directory, and write to new text file, with number of files and their name output should look like this,, assume that below one is a new file created by script Number of files in directory = 25 1. a.txt 2. abc.txt 3. asd.dat... (20 Replies)
Discussion started by: Akshay Hegde
20 Replies

9. Shell Programming and Scripting

Append Multiple files with file name in the beginning of line

Hi, I have multiple files having many lines like as bvelow: file Name a.txt abc def def xyz 123 5678 file Name b.txt abc def def xyz 123 5678 I would like to append files in the below format to a new file: file Name c.txt (7 Replies)
Discussion started by: rramkrishnas
7 Replies

10. Shell Programming and Scripting

Compare two files and count number of matching lines

Dear All, I would like to compare two files and return the number of matches found. Example File A Lx2 L1_Mus1 L1Md_T Lx5 L1M2 L1_Mus3 Lx3_Mus Lx9 Lx2A L1Md_A L1Md_F2 File B L1_Mus3 L1_Mus3 (3 Replies)
Discussion started by: paolo.kunder
3 Replies
sticky(8)						      System Manager's Manual							 sticky(8)

Name
       sticky - executable files with persistent text

Description
       The sticky bit (file mode bit 01000), is used to indicate special treatment for certain executable files and directories.

       While the sticky bit, mode 01000 is set on a sharable executable file, the text of that file will not be removed from the system swap area.
       Thus the file does not have to be fetched from the file system upon each execution.  As long as a copy remains in the swap area, the origi-
       nal  text  cannot  be  overwritten  in  the file system, nor can the file be deleted.  Directory entries can be removed so long as one link
       remains.

       Sharable files are made by the and options of

       To replace a sticky file that has been used, clear the sticky bit with and execute the old program to flush the swapped copy.  This can	be
       done  safely  even  if others are using it.  Overwrite the sticky file.	If the file is being executed by any process, writing will be pre-
       vented.	It suffices to simply remove the file and then rewrite it, being careful to reset the owner and mode with and Set the  sticky  bit
       again.

       A  directory  whose  sticky bit is set becomes an append-only directory, or, more accurately, a directory in which the deletion of files is
       restricted.  A file in a sticky directory may only be removed or renamed by a user if the user has write permission for the  directory  and
       the  user  is the owner of the file, the owner of the directory, or the superuser.  This feature is usefully applied to directories such as
       which must be publicly writeable but should deny users the license to arbitrarily delete or rename each others' files.

Restrictions
       Only the superuser can set the sticky bit.

See Also
       chmod(2)

								       RISC								 sticky(8)
All times are GMT -4. The time now is 12:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy