import { addBanner, addArticle, addTitle, addHeader, addParagraph, addSubHeader } from '/scripts/article.js';
import { addInset, addInsetList, addInsetCodeListing, addInsetBulletList } from '/scripts/inset.js';
import { addImageWithCaption, addButtonGroup } from '/scripts/visuals.js';
import { addSidebar} from '/scripts/sidebar.js';
import { addSyntax } from '/scripts/code.js';
import { menu } from '/scripts/web_dev_buttons.js';
import { global_menu } from '/scripts/grid_layout1.js';
import { local_menu } from '/scripts/linux.js';
const heading = document.querySelector(".heading");
const global = document.querySelector(".global_menu");
const local = document.querySelector(".local_menu");
const sidebar = document.querySelector(".sidebar");
const main = document.querySelector(".main_content");
heading.append(addTitle("AWK Essential Training"));
heading.append(addParagraph("David D. Levine - LinkedIn Learning - November 2022"));
heading.append(addParagraph("Chapter 9 - Conclusion"));
main.append(addHeader("Next Steps?"))
main.append(addParagraph("This course is a useful introduction to AWK but is by no means comprehensive so you may find the following resources useful if you are going to be using it."))
main.append(addParagraph("The GAWK (Gnu AWK) User Guide is a comprehensive reference with code exanples."))
main.append(addParagraph("Handy One-Line Scripts for AWK is a collection of AWK 1 liners compiled by Eric Pement. The file was last updated in August 2019 and I am writing this in April 2024 so you may want to check the website to make sure you get the most recent copy, but if it's no longer available, you can download a copy from here."))
main.append(addParagraph("IBM provides an AWK by Example tutorial but this hasn't been updated since 2023 and has been archived by IBM. I would imagine it will continue to be available but is probably not very up to date. This is probably not a huge problem with AWK which has itself been around since about 1977 and is probably not updated too often, if at all, now."))
main.append(addParagraph("A tutorial on AWK that is more likely to be up to date can be found on Tutorials Point although this doesn't say when it was created or last updated."))
main.append(addParagraph("AWK and SED are often used togetther, so a good follow up to this might be SED Essential Training which is also by David or maybe one of the course on Bash Scripting"))
addSidebar("linux");