O erro sintático está no uso da tag meta dentro do elemento <body>:
<body>
<meta charset='UTF-8'>O erro sintático está no uso da tag meta dentro do elemento <body>:
<body>
<meta charset='UTF-8'>| #!/bin/bash | |
| ## solution1: $ sh arrow_key.sh | |
| ## solution2: $ sh arrow_key.sh 2 [-v] | |
| : ' | |
| a d e f m o u ASCII | |
| 61 64 65 66 6D 6F 75 HEX | |
| HEX ASCII | |
| 0a \n or \s | |
| 1b 5b 41 \033[A # Up arrow |
| #!/bin/bash | |
| # | |
| # List all channels in which a Twitch TV user is on chat. | |
| # | |
| # USAGE: | |
| # ./list_channels.sh <user_id> <username> | |
| # | |
| # Created by Micael Levi on 22/01/2018 | |
| # Copyright (c) 2018 <mllc@icomp.ufam.edu.br> All rights reserved | |
| # |
| #!/bin/bash | |
| ## convert RGB to 256 terminal color | |
| rgb="${1//[!0-9,]/}" # 0..255,0..255,0..255 | |
| echo -n "\e[0;38;2;${rgb//,/;}m" |