Main > Free Download Search >

Free lpr bash 0.9a software for linux

lpr bash 0.9a

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 270
lpr-bash 0.9a

lpr-bash 0.9a


lpr-bash is a replacement for the lpr command found in lpr(ng), CUPS, and other Unix printing systems. more>>
lpr-bash is a replacement for the "lpr" command found in lpr(ng), CUPS, and other Unix printing systems. lpr-bash is implemented as a shell script.
Originally designed to run on LinuxFromScratch, and later ported to gentoo, it should work with virtually any flavor of Linux or Unix, and maybe even Mac OS X.
The most common Linux Printing Systems consists of a daemon that needs to run in the background, in most cases listening on a port (ipp://, TCP port 631) for data, in the case of CUPS even as a webserver.
The advantage of this overdone functionality is that you can print from another PC in the network using the IPP protocol, while lpr-bash needs to resort to the print server functionality of samba for network printing.
If you only want local printing or have samba already started, lpr-bash is the smaller, less complex Printing System for you.
Enhancements:
- Two nasty bugs were fixed in local printing, ebuild, printcap-convert, and unwanted output to stdout.
- The print group was changed to lp for gentoo conformity. (un)lockprinter commands were added.
- The install script was changed to use portage on gentoo systems.
- A Web page was added to the standard documentation.
- The package now unpacks into a subdirectory.
<<less
Download (0.069MB)
Added: 2005-11-30 License: GPL (GNU General Public License) Price:
1425 downloads
libbash 0.9.10a

libbash 0.9.10a


libbash is a tool that enables bash dynamic-like shared libraries. more>>
libbash is a tool that enables bash dynamic-like shared libraries.
libbash library does this by managing bash scripts that contain functions you may want to use in various scripts.
Enhancements:
- getopts.sh: The last getopts change seem to disable the ability to use `-e, `-n and `-E, being valid `echo parameters. Fixed.
<<less
Download (0.042MB)
Added: 2006-05-10 License: GPL (GNU General Public License) Price:
1267 downloads
Borealis 0.9a

Borealis 0.9a


Borealis provides a better feel through use of the subtle aural notifications. more>>
Borealis provides a "better feel" through use of the subtle aural notifications.
The goal of this sound theme is to provide "better feel" through use of the subtle aural notifications. The test I always have in my mind while designing the desktop sounds is to imagine having half-dozen (or more) computer stations in the same office or studio and consider whether their simultaneous use (and resulting desktop sounds) would pose as distraction on users and their productivity. Therefore, in order to minimize the "distraction factor" this theme associates many of the common desktop events with brief, mostly non-pitched, but nonetheless pleasing sound sources (a.k.a. effects).
All of the sounds included have been composed (if applicable), recorded, and mastered by me (although a few of them bear resemblance to other OSs sounds). Some of them are leftovers from my previous compositional and production endeavors, while others are entirely new creations.
All sounds are designed and mixed at CD-quality (stereo, 16-bit, 44.1KHz). Ogg version is distributed as 192Kbit stereo files.
Main features:
- Includes sounds for:
- KDE WM
- KDE System Notifications
- Kdevelop
- Kopete
- KDE Sysguard
- KMail
- Konsole
- Proxy configuration
- K3b (missing 1 sound)
- 4 startup sounds
- 2 exit sounds
- Automated installer and uninstaller
Enhancements:
- Couple improvements to the install and uninstall scripts (thanks to Kirk Strauser for the heads-up!)
<<less
Download (MB)
Added: 2007-03-02 License: Artistic License Price:
967 downloads
frowns 0.9a

frowns 0.9a


frowns is a chemoinformatics engine. more>> <<less
Download (0.46MB)
Added: 2005-04-01 License: Python License Price:
1668 downloads
Bash 3.2

Bash 3.2


Bash is the shell, or command language interpreter, that will appear in the GNU operating system. more>>
Bash is the shell, or command language interpreter, that will appear in the GNU operating system.
Bash is an sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh). Bash is intended to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard.
It offers functional improvements over sh for both programming and interactive use. In addition, most sh scripts can be run by Bash without modification.
Main features:
- Command line editing
- Unlimited size command history
- Job Control
- Shell Functions and Aliases
- Indexed arrays of unlimited size
- Integer arithmetic in any base from two to sixty-four
<<less
Download (2.3MB)
Added: 2006-10-12 License: GPL (GNU General Public License) Price:
650 downloads
Env::Bash 0.04

Env::Bash 0.04


Env::Bash is a Perl extension for accessing _all_ bash environment variables. more>>
Env::Bash is a Perl extension for accessing _all_ bash environment variables.

SYNOPSIS

use Env::Bash;

Standard interface:

my @var = get_env_var( "SORCERER_MIRRORS",
Source => "/etc/sorcery/config", );
print "SORCERER_MIRRORS via get_env_var:n",
join( "n", @var ), "ncount = ", scalar @var, "n";

@var = Env::Bash::SORCERER_MIRRORS
( Source => "/etc/sorcery/config", );
print "SORCERER_MIRRORS via name:n",
join( "n", @var ), "ncount = ", scalar @var, "n";

my @keys = get_env_keys( Source => "/etc/sorcery/config",
SourceOnly => 1, );
print "first 10 keys:n", map { " $_n" } @keys[0..9];
Object oriented interface:
my $be = Env::Bash->new( Source => "/etc/sorcery/config",
Keys => 1, );
my @var = $be->get( "SORCERER_MIRRORS" );
print "SORCERER_MIRRORS via get:n",
join( "n", @var ), "ncount = ", scalar @var, "n";

@var = $be->SORCERER_MIRRORS;
print "SORCERER_MIRRORS via name:n",
join( "n", @var ), "ncount = ", scalar @var, "n";

$be = Env::Bash->new( Keys => 1,);
@var = $be->HOSTTYPE;
print "HOSTTYPE via name:n",
join( "n", @var ), "ncount = ", scalar @var, "n";

if( $be->exists( BASH_VERSINFO ) ) {
print "BASH_VERSINFO =>n ",
join( "n ", $be->BASH_VERSINFO ), "n";
}

my %options = $be->options( [], Keys => 1 );
Tie HASH interface:
my %env = ();
tie %env, "Env::Bash", Source => "/etc/sorcery/config", ForceArray => 1;

my $var = $env{SORCERER_MIRRORS};
print "SORCERER_MIRRORS via tied hash:n",
join( "n", @$var ), "ncount = ", scalar @$var, "n";

$var = $env{HOSTTYPE};
print "HOSTTYPE via tied hash:n",
join( "n", @$var ), "ncount = ", scalar @$var, "n";

while( my( $key, $value ) = each %env ) {
print "$key =>n ", join( "n ", @$value ), "n";
}

<<less
Download (0.014MB)
Added: 2007-04-13 License: Perl Artistic License Price:
926 downloads
MP3 Database II 2.9

MP3 Database II 2.9


MP3DB2 is a collection of bash scripts for keeping track of large MP3 collections. more>>
MP3DB2 is a collection of bash scripts for keeping track of large MP3 collections. It will retrieve song information from the filenames and ID3 tags of a directory or CD of MP3s and store them in a local database.
This program is a complete rewrite of my MP3 database version 1. Version 1 only stored the data that was present in the filenames while version 2 actually retrieves information from the ID3 tags of each MP3.
Please note that as of this version the database format is NOT considered carved in stone. I have already added a few fields mid-development and this will continue for a while if I think the format can be made better. See the changelog for a list of changes to the database format since V2.0.
Enhancements:
- mp3dupe: now just displays the name of the directory we are checking not the full path in the host filesystem.
<<less
Download (0.096MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1190 downloads
kproxyswitch 0.2

kproxyswitch 0.2


kproxyswitch is a simple bash script, which makes setting the proxy server easier. more>>
kproxyswitch is a simple bash script, which makes setting the proxy server easier. The setting applies to Konqueror and all other applications that use the global proxy setting.
If you have to change proxies from time to time - or switch the proxy off and on again.
Youll like the possibilty to bind this script to a keyboard/menu/... shortcut and thus be able to switch the proxy faster than going through the menus of Konqueror or KDE Control Center.
Enhancements:
- Small changes: added two apps (randr, nspluginviewer) to blacklist, made output more verbose.
<<less
Download (0.002MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1214 downloads
Google Search 0.1

Google Search 0.1


Google Search is a desktop tool with you can search anything you want on the Google engine direct from your desktop. more>>
Google Search is a desktop tool with you can search anything you want on the Google engine direct from your desktop.

Installation:

To compile use qmake then make

Example:

bash: qmake mio.pro
bash: make
bash: ./mio

It uses firefox only. I will include konqueror in the next update.

Assign it a global shorcut.
<<less
Download (0.010MB)
Added: 2005-12-09 License: GPL (GNU General Public License) Price:
1471 downloads
Bashblogger 0.3.5

Bashblogger 0.3.5


Bash Blogger is a small, bash-powered, weblog engine. more>>
Bash Blogger is a small, bash-powered, weblog engine. Bashblogger generates valid, semantic, XHTML 1.1 webpages styled with a single CSS for layout and appearance without relying on popular, server-side scripting languages (i.e. Perl, Python, PHP, ASP, SSI, etc.).
Why program in the shell instead of (Perl, Python, etc)?
You may not have Perl, PHP or any number of the other scripting languages available on your hosting provider. Its a fairly safe bet that if you have shell access to your account, you can use Bash Blogger.
Enhancements:
- When I change the name of an article and rebuild the site the name change only changes in the bash blogger menu. The index/article etc ... still list the original title. FIXED
- If you attempt to delete an article and fail to confirm with Y/n (just press enter) bblog exits instead of returning to previous menu. FIXED
<<less
Download (0.024MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1115 downloads
slaxmod1 0.9a

slaxmod1 0.9a


slaxmod1 is some modules for www.slax.org. more>>
slaxmod1 is some modules for www.slax.org. From this version modifications can be used with other distros. (Read info on site.)
It changes things such as:
-removing some entries from konqueror.
-Assigns c, d, and so on, for hdd partitions and cd rom.
-different launch menu, organised as directories with shortcuts.
-bigger image for starting launch (k) menu
-and some other changes.
Ill update it soon to work with slaxmod 6rc2.
Hope youll like this experiment.
Enhancements:
- set up for 6.0.rc2 slax version
- kde is in /usr now, so moved files, and changed path to $KDEDIR from /opt/kde
<<less
Download (MB)
Added: 2007-04-25 License: BSD License Price:
917 downloads
BashDiff 1.43

BashDiff 1.43


Bash.Diff is a patch against Bash that incorporates many useful features from Awk, Python, Zsh, Ksh, and others. more>>
BashDiff is a patch against Bash that incorporates many useful features from Awk, Python, Zsh, Ksh, and others.
In the main core, it adds the following: new brace expansion {a..b}, new parameter expansion ${var|...}, new command substitution $(=...), extended for, while, and until loops, extended case statement, new try-block with integer exception, and new here document<<less
Download (0.121MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
940 downloads
kpsql 0.2

kpsql 0.2


kpsql is a graphical front-end to psql, the PostgreSQL interactive terminal. more>>
kpsql is a graphical front-end to psql, the PostgreSQL interactive terminal.

kpsql has been tested on 3.4.3 and 3.5, seems to work.

Installation:

1) extract to dir where you want it to be installed
2) run setup.bash to create a desktop icon

<<less
Download (0.030MB)
Added: 2005-12-19 License: GPL (GNU General Public License) Price:
1404 downloads
Bash Blogger 0.3.6

Bash Blogger 0.3.6


Bash Blogger is a shell script that generates CSS styled XHTML 1.1 static Web pages. more>>
Bash Blogger is a shell script that generates CSS styled XHTML 1.1 static Web pages.
Keeping up a website is basically just adding new content and a bunch of small repetitive tasks, e.g. updating the archives, updating the front page, etc. Bash scripting is good for automating repetitive tasks, so this works out pretty well.
Why program in the shell instead of (Perl, Python, etc)?
You may not have Perl, PHP or any number of the other scripting languages available on your hosting provider. Its a fairly safe bet that if you have shell access to your account, you can use Bash Blogger.
Enhancements:
- This release adds pingservices to notify technorati, blo.gs, etc. when a site is updated.
- It adds pingback support (autodiscovery and XML-RPC posting of pingback).
- User templates are now fully exposed.
- The default templates have been changed from XHTML 1.1 to HTML5 as per WHATWG recommendations.
- An ispell/aspell spellcheck menu option has been added.
- The welcome message code has been replaced with functions to make articles "sticky".
<<less
Download (0.032MB)
Added: 2007-07-28 License: GPL (GNU General Public License) Price:
822 downloads
Spinix 0.9

Spinix 0.9


Spinix is a new, complete GNU/Linux distribution geared toward ease of use. more>>
Spinix is a new, complete GNU/Linux distribution geared toward ease of use. Currently, Spinix is still in the beta stage. There has been no official release.
Spinix 0.9 comes with an all new installer. If your computer can not boot the ISO you will need to make a bootdisk and a root filesystem disk.
Main features:
- Kernel Version: 2.4.20
- XServer: XFree86 4.3.0
- Bash Version: 2.05b
- GCC Version: 3.3
- Gnome Version: 2.2
<<less
Download (632MB)
Added: 2005-05-09 License: LGPL (GNU Lesser General Public License) Price:
1629 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5