/shell_scripting_course

linkedin learning course on shell scripting

Primary LanguageShell

LinkedIn Learning course on Shell Scripting

current progress: Completed the course!

completed curriculum:

  1. shell scripting basics
  • printing to console
  • chmod
  • comments
  • the shebang
  • variables
  • passing parameters
  • challenge: create a script
  1. branching and loops
  • if statement
  • else statement
  • elif statement
  • while loop
  • for loop
  • break and continue
  • challenge: counter
  1. environmental variables
  • reading environmental variables
  • standard environmental variables
  • challenge: display a variable
  1. functions
  • the basics of functions
  • using parameters
  • piping
  • challenge: pipes and funcs
  1. file operations
  • reading files
  • writing files
  • file checksums
  • challenge: read a text file
  1. sleep and process
  • using sleep command
  • watching a process
  • challenge: watch a script
  1. interactive scripts
  • getting user input
  • handling bad data
  • challenge: guessing game