answersLogoWhite

0

Why awk -f command is used?

Updated: 11/6/2022
User Avatar

Wiki User

12y ago

Best Answer

The awk programming/scripting language is used to pattern match text and then do something with the result. Using the -f option indicates that the awk program/script has been stored in an external file instead of being specified inline with the command.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why awk -f command is used?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why use awk -v command?

This is used when you want to give a variable in an awk script a value before the script starts executing, even before the BEGIN block. You would do this on the command line if the variable needs different values for different executions rather than hardcoding it in the awk script itself.


By using awk programming how to count number of lines in a given file without wc command?

Use the following:awk 'END { print NR }'Awk will count the lines and print it out.


How do you write a awk script program in unix?

That is a difficult question to answer - the question is rather vague on what you intend to do. An awk script is a file containing awk commands that operate on 1 or more data files, based on selectors and actions resulting from that selector. It all depends on what you want to do with the data. The program itself is just a text file that can be created by any editor and then interpreted with the awk command.


How do youdisplay the particular lines in unix with awk command?

In AWK, once you have a successful selector then the action could be to print the resulting line (if thats what you wish to do). For example, /a test/ { print ; } would match (and print) all lines containing "a test"


What are Nawk scripts?

Nawk is an Awk replacement on *nix operating systems. It is very good at sorting data in columns and search functions. A classic awk command would be: "$awk '/Home/ {print $3}' file > home.txt" this consists of calling the awk interpretor to open the file "file", telling it to search for the word "Home" and when it finds that, print the 3rd column from that line out to a file named home.txt. Awk automatically uses tab (\t) as the field separator ($FS) and you can change this if the input file uses something else besides the tab, e.g. : or ; or & and so on. there are a lot of awk tutorials on the web and most are pretty good.


What is a limitation on freedom of speech that you may be sued in court for?

cash money trillionares we rich we never going to stop we got money nigars awk awk awk


What is complete AT command used to caused a modem to reinitilize itself to the settings defined at power on?

The answer is &F. And you can use the command AT&F (Which is preferred to ATZ when trying to solve a modem problem).


What is the command used to change a FAT32 partition to an NTFS partition?

f-disk


What is awk in unix?

AWK is a programming language developed in 1977 by Alfred Aho, Peter Weinberger, and Brian Kernighan. It is was developed as a text-processing language - it has simple syntax to match lines of patterns, separate out the fields, and operate on them.


In what year did American Water Works - AWK - have its IPO?

American Water Works (AWK)had its IPO in 2008.


Where can you find information about the awk-web programming language?

Awk isn't really a web programming language. However, that's not to say you can't use it for that. The following link will take you to a good extensive reference for Awk programming: http://www.dc.turkuamk.fi/docs/gnu/awk/gawk_toc.html.


What is the difference between sed grep and awk?

The major difference between SED GREP and AWK is that SED allows you to find a pattern address. AWK only allows you to find a numeric address.