Do I need to install awk or is it inbuilt in Ubuntu?

I'm new to Linux OS and studying Mobile Computing. I have to analyze files using awk. I'm using Ubuntu 14.04.

Do I need to install awk or is it inbuilt in Ubuntu?

3

1 Answer

Ubuntu's desktop edition has mawk installed by default, as it's a dependency of the lsb-core package. It conforms to standard AWK, with a few extensions.

GNU awk, which has more features, needs to be installed separately:

sudo apt-get install gawk
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like