6 lines
250 B
Bash
Executable file
6 lines
250 B
Bash
Executable file
#!/usr/bin/env sh
|
|
cd /opt
|
|
git clone git://github.com/sickill/stderred.git
|
|
cd stderred
|
|
make
|
|
case "$LD_PRELOAD" in *libstderred.so*) ;; *) echo 'export LD_PRELOAD="/opt/stderred/build/libstderred.so${LD_PRELOAD:+:$LD_PRELOAD}"'>>$HOME/.zprofile;; esac
|