Yes, you can specify different line numbers using the head command by changing the number after the -n option. For example:
To display the first 5 lines, use:
head -n 5 500-worst-passwords.txtTo display the first 20 lines, use:
head -n 20 500-worst-passwords.txt
If you want to display a specific range of lines, you can use the sed command instead. For example, to display lines 10 to 20, you can use:
sed -n '10,20p' 500-worst-passwords.txt
Let me know if you need more help!
