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

  • SEARCH
  • Home
  • 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 6743847
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:00:41+00:00 2026-05-26T12:00:41+00:00

Writing a shell script that pretty much wraps around an Awk script. I’d like

  • 0

Writing a shell script that pretty much wraps around an Awk script. I’d like to have my syntax colouring on in the awk section so I feel there must be a better way to embed awk scripts to bash than just quote the script in.

Or is it the best way to develop the awk on a separate file and use awk -f in the bash script until the script’s done? I’d like to keep within one file all times!

#!/bin/bash
awkscript='
BEGIN{
    print "test"
}
{print $3}'
df | awk "$awkscript"

This is the quote way, and quite ugly if you ask me. Any chance for heredocs here?

  • 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-26T12:00:42+00:00Added an answer on May 26, 2026 at 12:00 pm

    Yes, in Bash this is possible in a slightly less ugly way:

    #!/bin/bash
    df | awk -f <(cat - <<-'EOD'
            BEGIN{
                print "test"
            }
            {print $3}
    EOD
    )
    

    The <() code block is replaced with a path (something like /dev/fd/63) which points to a file descriptor tied to the output of the code. Make sure the awk script is indented with tabs and not spaces (<<- strips leading tabs).

    Another way to do this is to hide the awk script at the end of the bash script like this (don’t forget to exit):

    #!/bin/bash
    df | awk -f <(sed -e '0,/^#!.*awk/d' $0)
    exit $PIPESTATUS
    
    #!/usr/bin/awk -f
    BEGIN {
        print "test"
    }
    {print $3}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a shell script. A variable will have a url that will look
I'm writing a shell script that looks like this: for i in $ACTIONS_DIR/* do
I writing a ksh shell script and I have long comma separated string that
I am writing a shell script that takes file paths as input. For this
I'm writing a small shell script that needs to reverse the lines of a
I am writing a POSIX shell script that may or may not receive input
I'm writing a shell script (tcsh) that is supposed to received 3 parameters or
I'm writing a shell script that needs to compress a dir with the same
I'm writing a shell script that makes sure my DNS server is looking. Here's
I'm writing a shell script that outputs all untranslated strings from gettext .po file,

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.