Projects tagged ‘script’ and ‘shell’


Jump to tag:

Projects tagged ‘script’ and ‘shell’

Filtered by Project Tags script shell

Refine results Project Tags linux (32) bash (29) python (10) unix (9) sh (7) backup (6) utility (5) mysql (5) java (5) c (4) windows (4) rsync (3)

[72 total ]

2 Users
 

Color is a simple bash shell script that makes it easy to color and format echo'd text. It does this by converting combinations of readable arguments (bold, red, green, underline, etc.) into an ANSI ... [More] escape sequence that your terminal emulator or console understands. Usagecolor [ effect ] [ [ lt ] fgcolor ] [ bgcolor ] color list color [ -h | --help ] where: fgcolor and fgcolor are one of black, red, green, yellow, blue, magenta, cyan or white. effect can be any of [ nm | normal ], [ bd | bold ], [ ft | faint ], [ it | italic ], [ ul | underline ], [ bk | blink ], [ fb | fastblink ], [ rv | reverse ], [ iv | invisible ] Preceed the fgcolor with lt to use a light color -- the light or faint intensity effect is not commonly implemented within terminal emulators or consoles. [Less]
Created 12 months ago.

1 Users
   

pu.sh is a simple POSIX shell script which deploys a nice versioned backup solution based on rsync's hardlinking capability, which creates many snapshots in local or remote hosts (with SSH) without data redundancy.
Created about 1 year ago.

1 Users
 

Cygwin Easy is an autorun disk that let you work easily and quickly with Cygwin environment in a Windows computer without install anything on your hard disk. Cygwin Easy requires Microsoft Windows 2000/XP/Vista/7 or next versions.
Created about 1 year ago.

1 Users
 

Colection of small tools, utilities and scripts to sysadmins, to GNU/Linux and any other stuff, like Google Gadgets, daylight saving time, VirtualBox firewalling and bash scripts.
Created 12 months ago.

1 Users

Introductionpomamonitor (Poor's Man Monitor) is a shell script that rely's on notify-send command to send alerts to Gnome/KDE desktop user when a host or several hosts that was previously set to be ... [More] monitored are offline. Pretty useful for small system administrators that doesn't need Nagios/Zabbix for monitoring such a small enviroment. Obviously, it supports IPv6: we are in 2009! Why Poor's Man?A system administrator usually needs to monitor constantly the machines and system he is responsible for. This is often done by central monitoring systems, with several nodes like Nagios, Zabbix or Cacti. But this would require a central server to keep track of all uptime/downtime data, server's info like load average etc. A poor man (a ironic way to refer to a modest sysadmin) wouldn't have a central server to do such thing or even not too many hosts to care about. So the objective with this project is just to give a quick desktop alert to sysadmins that something is wrong with a server or network. Quick alerts can lead to quick responses and less downtime. Useful usagesJohn has many websites hosted in different datacenters. He wants to be alerted if any of his websites go down to jump on the tech support's neck as soon as possible. Mike is responsible to monitor several VPNs with dynamic IPs and domestic broadbands. He wants to know if xpto.no-ip.org stopped responding to act as quickly as he can. Mark is an IRC administrator of a network that is a constant target of DDoS. He needs to be warned if a server stopped responding even if he is not using an IRC client at the moment. Kurt is some sort of wierd telecom geek that wants to measure and monitor absolutely everything on internet to warn his friends over twitter when a famous service is offline. Software Dependencies and TechnologyYou will find what are pomamonitor's software dependencies and how does it work under the hood on SoftwareDependencies page. I'm impatient: how do I run it?So, want to download the latest pomamonitor version? Just read HowToInstall page. Help neededWe don't need to be Obama to say 'Yes we can!'. This is free software: no matter how inexperienced you are, you can help us with something you know or think. We're currently missing experience in the follow subjects: An equivalent to the command notify-send to other enviroments, like KDE. How to package pomamonitor to major Linux distributions. A GUI for settings. Zenity may be? If you can help us in those subject or any not listed above, don't be shy, let us have a chat Feature RequestWhat to suggest/request a feature? Please, provide us rich details on what you're thinking. Keep in touchKeep in touch with us through our mailing list [Less]
Created about 1 month ago.

0 Users

A Bash Script using DVgrab to capture 2 streams per 1394 host adapters on a linux machine.
Created 3 months ago.

0 Users

mysqlbackup uses mysqldump to make a backup of all databases or a single database and compress the backup and optionally saves it to a remote location using scp
Created 7 months ago.

0 Users

pu.sh is a simple POSIX shell script which deploys a nice versioned backup solution based on rsync's hardlinking capability, which creates many snapshots in local or remote hosts (with SSH) without ... [More] data redundancy. Install instructionsIt's simple: # svn export http://pu-sh.googlecode.com/svn/trunk/pu.sh /usr/local/bin/pu.shIf you prefer wget, do: # wget http://pu-sh.googlecode.com/svn/trunk/pu.sh -O /usr/local/bin/pu.sh # chmod +x /usr/local/bin/pu.shReady. RunningTo uses pu.sh you need these softwares installed in your computer: rsync; OpenSSH client (ssh), only if you need push backups on a remote host. Synopsys: $ pu.sh [-q] [-v]... [-e FILE] [-l FILE] [--] SRC [SRC]... [[USER@]HOST:]DESTExamples usagePush some dirs into /var/backups: $ pu.sh /home /usr/local/bin /var/backupsPush / with a exclude list into /backups in example.net: # pu.sh -e /etc/pu-sh/exclude.list / root@example.net:/backups/Push /var/mail to remote host and writes a log in /var/log/pu-sh.log # pu.sh -l /var/log/pu-sh.log /var/mail root@192.168.0.1:/var/cache/pu-shFor more instructions, run pu.sh -h. Simple deployPut the script below for run with cron: #!/bin/sh SOURCES="/etc /srv /opt /home /root /var/lib /var/www /usr/local /var/log /var/mail /var/spool" DEST="user@example.net:/backups/`hostname -f`" cat . See AUTHORS file for a complete authors list of this application. [Less]
Created 12 months ago.

0 Users

Wordpress ButlerWordpress has been the subject of numerous exploits over the years, and even if you've upgraded yourself to the latest and safest version, you may still have dirt lingering around from ... [More] previous hacks. This script will find every installation of Wordpress, and delete entries from your options table that contains exploitable code. It also checks the version of each installation to alert you if you need to upgrade. You can optionally create a tab-delimited report that you can open in your favourite spreadsheet software. This script was written for Retrix Hosting (of which I am a partner), but we decided to give it away to anyone who would like to use it for the greater good. RequirementsThis script was written in standard POSIX shell #!/bin/sh, and only tested on FreeBSD. It should, however, work on the other BSDs, Mac OS X, Linux, etc. Other requirements include: The 'mysql' command-line tool grep, sed, awk, tail, find The necessary permissions to scan through the folders in $basedir The script parses the wp-config.php file for each installation of Wordpress found, and will connect to the database server to gather information and remove offending rows. [Less]
Created 26 days ago.

0 Users

JavaShellScript is a tool to run small Java programs as shell scripts.How jss worksWith jss (short for JavaShellScript) you can run java programs, without compiling them, directly as if they were ... [More] shell scripts. jss will compile the Java-file and save the class file in a cache. When you call the Program the next time, jss will run the cached class file, if the source file isn't changed. You can use jss with every Java program. The only thing you need to do is to add a Shebang line to your source code. The file don't need to have the .java suffix. A "Hello World" sampleFirst create a file sample.java with the following content #!/usr/bin/env jss public class sample { public static void main(String[] args) { System.out.println("Hello World!"); } }Make the file executable: chmod +x sample.javaRun the program: ./sample.java [Less]
Created 3 months ago.