3
grep / sed / awk를 사용하여 문자열에서 단어 추출
나는 끈이있다 00:28:04 /usr/lib/jvm/jre/bin/java -DJDBC_CONNECTION_STRING= -Dspring.profiles.active=qa -XX:MaxPermSize=256 qa다음 단어를 추출하고 싶습니다 -Dspring.profiles.active. 데모를 위해 text.txt 파일에 문자열 저장이 있습니다. 내가 할 때 grep -r -o "spring.profiles.active=" text.txt 결과는 spring.profiles.active= 이 단어는 항상되지 않습니다 qa때문일 수 있습니다 prod또는 dev. 내가 뭘하려는 단어를 찾을 수 있습니다 spring.profiles.active및 후= 단어 그 추출물. 서버에서 …
12
command-line
bash
grep
sed
awk