InstallLinux: update-sc-network-protocols.sh

File update-sc-network-protocols.sh, 0.6 KB (added by stp, 21 months ago)

konqueror script 2/2

Line 
1#!/bin/bash
2if [[ -n $1 ]]; then
3 scenariDir=$1;
4else
5 scenariDir="/opt/SCENARI /usr/share/scenari*";
6fi
7
8confFiles=`find $scenariDir -name confGeneral.js`;
9echo $confFiles;
10for confFile in $confFiles; do
11  if [[ -z `grep "network.protocol-handler.app.file" $confFile` ]]; then
12    echo "pref(\"network.protocol-handler.app.file\", \"/usr/local/bin/kfmclientexec\");" >> $confFile;
13  fi
14  if [[ -z `grep "network.protocol-handler.app.http" $confFile` ]]; then
15    echo "pref(\"network.protocol-handler.app.http\", \"/usr/bin/firefox\");" >> $confFile;
16  fi
17
18done