1/8
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
kali > head/ etc/snort/snort.conf
displays the first 10 lines of snort.conf
kali> head -20/etc/snort/snort.conf
displays the first 20 lines of snort.cof
kali> tail/etc/snort/snort.conf
displays the last 10 lines of snort.conf
kali> tail -20/etc/snort/snort.conf
shows the last 20 lines of the file snort.conf
kali> nl/etc/snort/snort.conf
displays a file with line numbers
kali > cat/ etc/ snort/snort.conf | grep output
searches for and displays all the lines that contain output
kali > sed s/mysql/MySQL/g/etc/snort/snort.conf > snort2.conf
replaces mysql with MySQL
more/etc/snort/snort.conf
displays a page at a time
kali > less/etc/snort/snort.conf
displays files and lets you search through them