File indexing completed on 2024-09-08 12:53:13
0001 #!/bin/sh 0002 0003 while read line ; do 0004 if echo "$line" | grep 'RemotePort=' > /dev/null 2> /dev/null ; then 0005 echo "$line" | sed -e 's/Remote/RemoteSMB/' 0006 else 0007 echo "$line" 0008 fi 0009 done