Skip to content

Instantly share code, notes, and snippets.

View mishkaexe's full-sized avatar

Michael mishkaexe

  • Berlin
View GitHub Profile
@mishkaexe
mishkaexe / rhcsa_cheat_sheet.md
Last active April 5, 2021 15:27
RHCSA Prep Reference

RHCSA ⛑

Understand And Use Essential Tools 🔨

Using grep and regex 🔍

grep is a program for finding mathing patterns, it will look for context of a files or stdin.
grep error /var/log/server.log will print all the errors in a file.
find . -name *.txt | grep temp will print all the .txt file with temp in it.

Flags: