This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| bash_one-liners [2025/09/02 01:04] – created ken | bash_one-liners [2025/09/03 02:55] (current) – [sed] ken | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== bash one-liners ====== | ====== bash one-liners ====== | ||
| + | |||
| + | To remove everything after and including the final ' | ||
| + | To remove the last 4 characters from ' | ||
| + | \\ | ||
| + | ===== sed ===== | ||
| + | \\ | ||
| + | Substitute any of listed characters with one command | ||
| + | < | ||
| + | sed s'/ | ||
| + | </ | ||
| + | Brackets mean "any one of". | ||