Display all lines of the file /etc/ssh/sshd_config starting with a letter.
include capital letters as well
below is what i tried
#!/bin/bash
grep -i 'n*' /etc/ssh/sshd_config
Display all lines of the file /etc/ssh/sshd_config starting with a letter.
include capital letters as well
below is what i tried
#!/bin/bash
grep -i 'n*' /etc/ssh/sshd_config
Like this:
grep '^[[:alpha:]]' /etc/ssh/sshd_config