Thursday, April 26, 2018

sed | remove leading space for each row

sed "s/^[ \t]*//" -i filename

#These is no output. The change is done inplace.

No comments:

Post a Comment

Any comments?

my-alpine and docker-compose.yml

 ``` version: '1' services:     man:       build: .       image: my-alpine:latest   ```  Dockerfile: ``` FROM alpine:latest ENV PYTH...