Code Sample |
#!/bin/sh # # Script name: /home/dsl/fixmydsl.sh # A myDSL Click 'n' load repair script # # Creates a new mydslgui.pl script in your home directory # and starts it up. # Try it out if your Click 'n' load desktop icon # only shows "Programs Available" and no other choices. # # Use Firefox and your clipboard (select and copy) # to paste this text into Scite # Then save this file in your home directory # under the file name "fixmydsl.sh" # Then open an Xterminal and type in: # "chmod 755 fixmydsl.sh" # Then type in: # "./fixmydsl.sh" echo '#!/usr/bin/perl' > $HOME/mydslgui.pl echo 'my $host = "ibiblio.org";' >> $HOME/mydslgui.pl cat /usr/bin/mydslgui.pl >> $HOME/mydslgui.pl chmod 755 $HOME/mydslgui.pl $HOME/mydslgui.pl exit |
Code Sample |
my $host = "ibiblio.org"; |
Code Sample |
HTTP/1.0 |