I hereby claim:
- I am ke20 on github.
- I am ke20 (https://keybase.io/ke20) on keybase.
- I have a public key ASAOv75EQrwizw0S28GTSgMsvo_J5Ks0AlPmHiQWGGJMfAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# Installation de gnome-shell | |
sudo apt-get -y install gnome-shell | |
# Installation de guake | |
sudo apt-get -y install guake | |
sudo ln -s "/usr/share/applications/guake.desktop" "/etc/xdg/autostart/" | |
# Installation d'apache 2 |
tail -100f /var/log/applications/application.log | awk ' | |
/(request|app)\.INFO/ {print "\033[36m" $0 "\033[39m"} | |
/(request|app)\.WARNING/ {print "\033[33m" $0 "\033[39m"} | |
/(request|app)\.ERROR/ {print "\033[31m" $0 "\033[39m"} | |
/(request|app)\.CRITICAL/ {print "\033[31m" $0 "\033[39m"} | |
' |
#!/bin/ksh | |
ini_parser() | |
{ | |
# Check if ini file exists | |
if [ ! -f $1 ]; then | |
echo "Error: The file to parse doesn't exist" | |
return 0 | |
fi |