Skip to content

Instantly share code, notes, and snippets.

@capezotte
capezotte / Replacing_Udev.md
Last active November 11, 2023 00:08
Instructions on replacing udev/eudev on Artix

Replacing udev on Artix Linux

Reminder this is UNSUPPORTED. Reproduce bugs on a stock install with xudev/eudev before reporting them.

Preparations

Do not reboot until you've done them all.

Step 1 - remove udev

@MasWag
MasWag / topsort.awk
Created January 20, 2016 05:41
topological sort in awk
#!/usr/bin/gawk -f
# @file topsort.awk
# @brief perform topological sort in awk
# @note tested in gawk 4.1.3, mawk 1.3.4, and nawk
{
edge[$1] = edge[$1]" "$2;
}
END {