크롬이나 기타에서 저장된 html 북마크를 사용하여 종종 <a href
필터링하고 정렬하려는 태그가 있는 html 파일로 내보냅니다.
<a href="https://<a-web-site>">Title of the website</a>
sed/grep/awk와 같은 기본 Linux 유틸리티를 사용하여 항목을 필터링하고 정렬하는 방법은 다음과 같습니다.
Title of the website https://<a-web-site>
답변1
sed를 사용하세요:
$ echo '<a href="https://<a-web-site>">Title of the website</a>' | sed -e 's|.*href="\(.*\)".*>\(.*\)</a>|\2 \1|g'
Title of the website https://<a-web-site>