Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)VI
Posts
0
Comments
56
Joined
2 yr. ago

  • I can't imagine it would be equally distributed? Probably normal distribution applies over the span, most of the kernels would probably pop within say 20s of each other, and none in the beginning.

  • grep -r print .

    I.e. Grep on print recursively from . (current directory)

    Or for more advance search find . -name "*.sh" -exec grep -H print {} \;

    I.e find all files with sh extension and run grep on it ({} become the filename). -H to include filename in output.