Bash dot 이스케이프

1 개요[ | ]

escaping dots in bash variables
Bash dot 이스케이프
Bash 점에 역슬래시 추가
[root@zetawiki ~]# IP=8.8.8.8
[root@zetawiki ~]# echo ${IP//./\\.}
8\.8\.8\.8
[root@zetawiki ~]# IP=8.8.8.8
[root@zetawiki ~]# IP2=${IP//./\\.}
[root@zetawiki ~]# echo $IP2
8\.8\.8\.8

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}