sed - deptno/deptno.github.io GitHub Wiki
sed
- 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