Skip to content

Instantly share code, notes, and snippets.

View Drsheppard01's full-sized avatar

DrSheppard Drsheppard01

View GitHub Profile
@Astro36
Astro36 / README.md
Last active August 7, 2023 18:47
How to install Solus with Windows 10

How to install Solus with Windows 10

1. Install Windows 10

Install Windows 10.

2. Install Solus

  1. Boot into Solus Live USB Drive.
  2. Run GParted.
@pkuczynski
pkuczynski / parse_yaml.sh
Last active June 15, 2024 20:30
Read YAML file from Bash script
#!/bin/sh
parse_yaml() {
local prefix=$2
local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034')
sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \
-e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" $1 |
awk -F$fs '{
indent = length($1)/2;
vname[indent] = $2;
for (i in vname) {if (i > indent) {delete vname[i]}}