|
|
|
|
|
by notpushkin
994 days ago
|
|
Interesting! I usually do exactly the opposite when I can. E. g. in Bash I would rather do this: curl -fsSL https://download.docker.com/linux/ubuntu/gpg \
| gpg --dearmor \
| sudo tee /etc/apt/keyrings/docker.gpg \
> /dev/null
|
|
However, in R, you don't need to trailing slashes on new lines. Plus, their pipes are hideous: %>% or now |>.
I do kind of like how the pipe delimiter looks on the left.