Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 533773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:32:36+00:00 2026-05-13T09:32:36+00:00

Everyone knows PHP hates blank lines at the beginning or end of a file

  • 0

Everyone knows PHP hates blank lines at the beginning or end of a file (before or after the PHP tags).

I’ve got an awk script that will modify the files. I pass all my files through it and things are peachy, no more leading or trailing blank lines.

I’d like to FIND the files first, to build a quick exception report.

I tried something like this:

grep -r -e :a -e '/^\n*$/{$d;N;};/\n$/ba'

But that’s wrong.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:32:36+00:00Added an answer on May 13, 2026 at 9:32 am

    This shell script will go through all your files and print if it found a blank line at the beginning or end of each file:

    for f in `find . -type f`; do 
      for t in head tail; do 
        $t -1 $f  |egrep '^[  ]*$' >/dev/null && echo "blank line at the $t of $f"; 
      done; 
    done
    

    I broke the lines for readability, but you can run it as a one liner too.

    example output:

    blank line at the head of ./b
    blank line at the tail of ./c
    blank line at the head of ./d
    blank line at the tail of ./d
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As everyone knows, we are NOT allowed to modify the Adsense PHP script as
Not everyone knows that php can handle variables that have first characters as numbers,
I have a Google Instant style jQuery search script that queries a PHP file
i hope that everyone here know the php 'variable variable' syntax: $color = 'red';
Everyone knows the = sign. SELECT * FROM mytable WHERE column1 = column2; However,
as everyone knows Windows does paths with backslashes where Unix does paths with forward
Hello everyone I'm trying to work with jboss messaging, does anyone knows the default
Everyone knows that we should always use DOM techniques instead of regexes to extract
everyone knows that we are restricted to use the windows native fonts like arial,
Everyone knows? about avatar url in tumblr api / read / json? like for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.