lsblk -o NAME,SIZE,TYPE,FSTYPE
fdisk -l /dev/sda
| #!/usr/bin/env bash | |
| # get bash colors and styles here: | |
| # http://misc.flogisoft.com/bash/tip_colors_and_formatting | |
| C_RESET='\e[0m' | |
| C_RED='\e[31m' | |
| C_GREEN='\e[32m' | |
| C_YELLOW='\e[33m' | |
| function __run() #(step, name, cmd) |