8 lines
158 B
Bash
8 lines
158 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
curl --fail \
|
||
|
-L \
|
||
|
--output /tmp/.zshrc.tty \
|
||
|
https://git.grml.org/f/grml-etc-core/etc/zsh/zshrc \
|
||
|
&& mv /tmp/.zshrc.tty .zshrc.tty
|