0
Rsync command-line switches example
rsync is a software application for Unix systems which synchronizes files and directories from one location to another
while minimizing data transfer
The basic usage to synchronize two folders looks like
rsync -r -t -v /source_folder /destination_folder
This...
How to find Operating System name using perl script
Just a very simple command to determine the operating system in which the script is running
#!/usr/bin/perl
print "The OS in which the script is runnin is:-\n";
print "$^O";
VN:F [1.9.13_1145]please wait...Rating: 0.0/10 (0 votes cast)VN:F...
Split /etc/passwd file using perl script
This tutorial will show you how to split the USERID and USERNAME using perl script.If you just have look at the passwd file you can see the lines are seperated with semicolon “:” and that is being used to split the file here.
#!/usr/bin/perl
$filename...
Ignore empty lines using perl
Today i will give you an idea here’s what you would need if you want to
skip blank lines or lines that have a ‘#’ at the start (or after
one or more white-space characters, i.e. spaces, tabs etc.):
while ( < $f> ) {
next if...
Reading input from keyboard and finding the sum using perl
This script will show how to read numbers from keyboard and find the sum.If some value is entered say 999 then it will exit the program.
#!/usr/bin/perl
print "Enter the number \n";
$userinput = <STDIN>;
chomp ($userinput);
print "User...
Simple User Input And Sleep Functionality Using Perl Script
This tutorial is a very simple script that will get the User Input And Clearly Explain How The Sleep Functionality is accomplihed using perl.
#!/usr/bin/perl
print "My First Perl Program \n";
print "#########################################";
print...
Simple page flip effect using Jquery, css and simple html
Simple page flip effect using Jquery, css and simple html, very easy to implement just copy paste the code below
This is the javascript part enter it inside the … section of your website.
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script...
Give a welcome alert message to your visitors using javascript
Welcome message to visitors using javascript, this simple script will welcome the visitor who clicks your URL from your referrer.This will pops up a thank you message for Visiting your URL from SOME WEBSITE[probably your friend's Website or...
Scrolling title bar in browser using javascript
This is a simple script that demonstrates how to implement a scrolling text in the website title bar using simple javscript.Here is the code, Just copy and paste it inside your html …
<script type='text/javascript'>
//script by...
Change input value from uppercase to lowercase using javascript
This tutorial will show you how to accept only lower case letters while user type something on the input field provided.
Type some letters in caps [uppercase]<input type="text" name="caps" size=40 value="" onChange="javascript:this.value=this.value.toLowerCase();"/>
<br...
Random password generator script using javascript
This script will generate passwords randomly using simple javascript.Here is the complete code
<html>
<head>
<script src="http://mistonline.in/wp/demo/jquery-1.2.3.min.js"></script>
<title>Random password...
Get youtube video screenshot using jquery
This is yet another script using jquery to get the Youtube video screenshot
<html>
<head>
<script src="http://mistonline.in/wp/demo/jquery-1.2.3.min.js"></script>
<title>Mistonline.in , Youtube Screenshot...
Random images per day using javascript and jquery
This script shows how to display random pics or images depending upon the day.This script use simple javascript approach along with jquery.
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<style...
