Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 304 Bytes

bash.md

File metadata and controls

17 lines (13 loc) · 304 Bytes

bash allgemein

bash farben

setzte weißen hintergrund / schwarze schrift bash> echo -e "Default \e[107mWhite \e[30mBlack"

kill mehrere Prozesse mit grep gefunden

ps aux | grep 3313-re | awk '{print $2}' | xargs kill -9

debug

#!/bin/bash
set -x
..code to debug...
set +x