文字列をgrepするときに、ファイルの最初の文字を削除したい。ただし、編集前に変更された行が同じ位置にある必要があります。
サンプルファイル:
#%PAM-1.0
auth sufficient pam_rootok.so
# Uncomment the following line to implicitly trust users in the "wheel" group.
#auth sufficient pam_wheel.so trust use_uid
auth include system-auth
account sufficient pam_succeed_if.so uid = 0 use_uid quiet
編集後の予想ビュー:
#%PAM-1.0
auth sufficient pam_rootok.so
# Uncomment the following line to implicitly trust users in the "wheel" group.
auth sufficient pam_wheel.so trust use_uid
auth include system-auth
account sufficient pam_succeed_if.so uid = 0 use_uid quiet
その場合、4行目で「#」を削除するだけで済みますが、編集したい正確な行を指すときではなく、文字列「sufficient pam_wheel.so trust use_uid」を検索するときにそれを行いたいです。