-
Notifications
You must be signed in to change notification settings - Fork 0
sed
deptno edited this page Jun 9, 2023
·
3 revisions
- cheatsheet: https://quickref.me/sed
deletemiter
- /
- :
- |
구분자를 바꿔서 가독성을 향상 시킬 수 있다
$ echo "/hello/world" | sed 's/\/hello\//'
world
$ echo "/hello/world" | sed 's:/hello/::'
world
$ echo "/hello/world" | sed 's|/hello/||'
world