1. Урок 1. 00:03:10
    Introduction - welcome!
  2. Урок 2. 00:01:29
    pwd
  3. Урок 3. 00:03:19
    cd
  4. Урок 4. 00:03:44
    ls
  5. Урок 5. 00:03:33
    mkdir
  6. Урок 6. 00:02:16
    touch
  7. Урок 7. 00:03:16
    date
  8. Урок 8. 00:02:39
    cat
  9. Урок 9. 00:03:32
    rm + rmdir
  10. Урок 10. 00:02:59
    cp
  11. Урок 11. 00:03:06
    mv
  12. Урок 12. 00:03:02
    wc
  13. Урок 13. 00:09:52
    grep
  14. Урок 14. 00:06:17
    find
  15. Урок 15. 00:03:09
    Scripting - what it is all about?
  16. Урок 16. 00:08:54
    Invoking the script
  17. Урок 17. 00:07:26
    Sha-bang!
  18. Урок 18. 00:04:07
    Using variables in scripts
  19. Урок 19. 00:07:18
    Explicit definition - showcase
  20. Урок 20. 00:06:24
    Read command
  21. Урок 21. 00:06:41
    command substitution + time measurement
  22. Урок 22. 00:03:07
    Math calculation
  23. Урок 23. 00:09:13
    Math Calculation - showcase
  24. Урок 24. 00:04:38
    Playing with $ : arguments, arguments, arguments
  25. Урок 25. 00:03:35
    More on arguments - playing with IFS and assigning arguments value to a variable
  26. Урок 26. 00:05:54
    Redirection and Piping
  27. Урок 27. 00:04:24
    Redirection and Piping - showcase
  28. Урок 28. 00:07:51
    Exit status
  29. Урок 29. 00:03:02
    Explaining IF
  30. Урок 30. 00:09:22
    Mathematical comparisons
  31. Урок 31. 00:04:14
    String comparisons
  32. Урок 32. 00:10:04
    String comparison - you are not root??
  33. Урок 33. 00:04:27
    Wildcards
  34. Урок 34. 00:07:45
    Wildcards - making linux command badass
  35. Урок 35. 00:11:29
    Wildcards - create backup script
  36. Урок 36. 00:06:31
    Regular expressions
  37. Урок 37. 00:12:42
    Regular expressions - is there any reachable ip address ??
  38. Урок 38. 00:01:54
    Filesystem related tests
  39. Урок 39. 00:12:57
    Filesystem related tests - testing files permissions
  40. Урок 40. 00:09:28
    && and || - making IF statement shorter
  41. Урок 41. 00:05:18
    Explaining for loop
  42. Урок 42. 00:03:59
    Add commands output into all .txt files
  43. Урок 43. 00:03:06
    Looping through all script arguments: "$@" or "$*" ??
  44. Урок 44. 00:03:27
    Explaining while loop
  45. Урок 45. 00:11:30
    Making own cat command with line numbering
  46. Урок 46. 00:02:11
    Explaining case
  47. Урок 47. 00:13:30
    Recheck users input
  48. Урок 48. 00:14:08
    Creating script with parameters [-f file] [--file file] [-h] [--help]
  49. Урок 49. 00:07:29
    (NEW) Manual Parsing vs Getopts vs Getopt
  50. Урок 50. 00:06:35
    (NEW) Getopts - showcase script
  51. Урок 51. 00:11:11
    (NEW) Getopt - showcase script
  52. Урок 52. 00:02:44
    Explaining Array
  53. Урок 53. 00:06:24
    Array - storing output of command into array and making some fun with its items
  54. Урок 54. 00:03:34
    Explaining Functions
  55. Урок 55. 00:05:08
    Making addition in a function
  56. Урок 56. 00:03:28
    Explaining AWK
  57. Урок 57. 00:05:33
    print, BEGIN{}, {}, END{}
  58. Урок 58. 00:05:20
    $1, $2, dollars everywhere
  59. Урок 59. 00:04:44
    searching pattern
  60. Урок 60. 00:03:01
    NF - number of fields
  61. Урок 61. 00:02:35
    NR - number of records
  62. Урок 62. 00:03:39
    FS - field separator
  63. Урок 63. 00:03:05
    RS - record separator
  64. Урок 64. 00:04:13
    variable assignment
  65. Урок 65. 00:04:20
    if-else
  66. Урок 66. 00:04:00
    for loop
  67. Урок 67. 00:02:28
    Building script with AWK
  68. Урок 68. 00:08:23
    AWK script PART 1 - reading arguments
  69. Урок 69. 00:04:41
    AWK script PART 2 - was the location set?
  70. Урок 70. 00:03:19
    AWK script PART 3 - searching for specific extension
  71. Урок 71. 00:04:07
    AWK script PART 4 - what about not existing extension?
  72. Урок 72. 00:02:30
    AWK script PART 5 - counting size of files using awk
  73. Урок 73. 00:07:29
    AWK script PART 6 - setting largest and smallest file
  74. Урок 74. 00:06:57
    AWK script PART 7 - printing statistics
  75. Урок 75. 00:05:03
    AWK script PART 8 - reading awk part from separate file
  76. Урок 76. 00:04:41
    Explaining SED
  77. Урок 77. 00:05:03
    p - print command and -n option
  78. Урок 78. 00:02:12
    a append/ i prepand
  79. Урок 79. 00:03:09
    d - delete command
  80. Урок 80. 00:01:48
    c - change command
  81. Урок 81. 00:02:52
    q - quit command
  82. Урок 82. 00:02:49
    -e option Run multiple sed commands
  83. Урок 83. 00:02:45
    -i option Changing files for sure
  84. Урок 84. 00:02:57
    e - perform shell commands
  85. Урок 85. 00:02:49
    Explaining s - substitute command
  86. Урок 86. 00:06:22
    s - substitute command showcase
  87. Урок 87. 00:03:13
    Building script with SED
  88. Урок 88. 00:06:08
    SED script PART 1 - structure for reading arguments
  89. Урок 89. 00:06:30
    SED script PART 2 - fixing space/tab issues
  90. Урок 90. 00:06:43
    SED script PART 3 - printing lines which don't have space/tab issues
  91. Урок 91. 00:04:04
    SED script PART 4 - line numbering
  92. Урок 92. 00:08:05
    SED script PART 5 - show spaces/tabs as a red background
  93. Урок 93. 00:06:17
    SED script PART6 - show spaces/tabs also at the end of lines
  94. Урок 94. 00:05:27
    SED script PART 7 - just to print it nicely