= An Introduction to Linux ! Apostolos rootApostolos@swarmlab.io // Metadata: :description: Intro and Install :keywords: Linux, apt :data-uri: :toc: right :toc-title: Πίνακας περιεχομένων :toclevels: 4 :source-highlighter: highlight :icons: font :sectnums: {empty} + .NOTE [NOTE] ==== Assuming you're already logged in ==== == heredoc === Exercise [source,bash] ---- #!/bin/bash var=$(cat < ${array[$i]}"; done "result: " EOF for i in "${!array[@]}"; do echo "$i => ${array[$i]}"; done echo "" echo "" ---- === expansion [source,bash] ---- real_fc="barca" # set real_fc win="real_fc" # $win is "real_fc" echo "${!win}" # we print the variable linked by $win's content ----