10 More Discussions You Might Find Interesting
1. UNIX for Beginners Questions & Answers
I need to find all files and folders containing keyword from the topmost directory deep down the tree but omitting all references to keyword in web-search logs and entries, i.e. excluding search and browsing history made using web-browser1, web-browser2, web-browser3, (bypassing all entries of the... (8 Replies)
Discussion started by: scrutinizerix
8 Replies
2. Shell Programming and Scripting
I have a file name :
var=UsrAccChgRpt
I want to make them upper case.
Tried:
$var | tr
Error:
tr: Invalid combination of options and Strings.
Usage: tr | -ds | -s | -ds | -s ] String1 String2
tr { -d | -s | -d | -s } String1
Could you please help. I am using AIX... (2 Replies)
Discussion started by: digioleg54
2 Replies
3. Shell Programming and Scripting
Hi,
Below is my input file:
Long list of significant figure
1.757E-4
7.51E-3
5.634E-5
.
.
.
Desired output file:
0.0001757
0.00751
0.00005634
.
.
. (10 Replies)
Discussion started by: perl_beginner
10 Replies
4. Shell Programming and Scripting
I tried with sed command to create a space between namespace from the XML file. I used this syntax. Can someone tell me is this syntax is vaild?
/usr/xpg4/bin/sed -e 's/<\/^.*><^.:Errort>/<\/^.*> <^.:Errort>/g' test > test2
I dint find any changes or any space being created between... (10 Replies)
Discussion started by: raghunsi
10 Replies
5. UNIX Desktop Questions & Answers
Hi,
I want to check if file(s) exist even in subdirectories and perform an action. After searching here couldn't find solution that would work, but made my own solution that works fine:
if
then
echo
egrep "$1|$2|$3" `find| grep MLOG`
else
echo "MLOG does not exist"
fiThat will check... (1 Reply)
Discussion started by: Vitoriung
1 Replies
6. Red Hat
All
I am trying to get RHEL 5.4 to load to the XEN enabled kernel but I am not having much luck. My grub.conf looks like it has 2.6.18-194.11.3.el5xen as the 1st one but when I do a uname -a I get the NON xen enabled kernel. I know I am doing something stupid but if anybody has any... (1 Reply)
Discussion started by: razor3928
1 Replies
7. UNIX for Dummies Questions & Answers
Ok so i'm relatively new at UNIX and I'm trying to figure out how to make a log dump command.
My situation is a bit odd in that I'm always looking at customers boxes and as such I can't really do much to them. So everything I do in UNIX pretty much has to be a command I can type in by hand. I... (4 Replies)
Discussion started by: MrEddy
4 Replies
8. Shell Programming and Scripting
i've looked at a bunch of the date comparison threads on these boards but unfortunately not been able to figure this thing out yet. still confused by some of the way conditionals handle variables...
here is what i where i am now...
# a bunch of initializition steps are here ...... (1 Reply)
Discussion started by: danpaluska
1 Replies
9. Shell Programming and Scripting
Dear all
I am still bit new in shell script area.I am writing down a shell script which I guess somewhere wrong so please kindly correct it. I would be greatful for that.
What I actually want from this shell script is that it will move all the files one by one to another server which can be... (2 Replies)
Discussion started by: girish.batra
2 Replies
10. Shell Programming and Scripting
Problem: I have a shell script that will be called by a Perl module that will connect to a db and delete rows. The Perl module will be called by CRON. I am using a Perl module to call a shell script because I need to get the db connection from Perl.
Here is the Perl pseudocode:
... (4 Replies)
Discussion started by: mh53j_fe
4 Replies
Plugin(3pm) LogReport's Lire Documentation Plugin(3pm)
NAME
Lire::Config::Plugin - Value object for plugin configuration.
SYNOPSIS
use Lire::Config::Plugin;
DESCRIPTION
This configuration object hold the name of a selected plugin as well as its options.
get_plugin()
Returns the currently selected plugin.
set_plugin( $plugin )
Changes the selected plugin. If the selected plugin is changed, a new property set will be created from the plugin's defined properties.
get_properties_spec()
Returns the TypeSpec that is used to specify the plugin's properties. This method will return an empty RecordSpec when the plugin didn't
define any properties. One can also use the has_properties() method to check if the Plugin defined configuration properties.
has_properties()
Returns a boolean value indicating whether the current plugin is configurable.
get_properties()
Returns the Lire::Config::Dictionary object which hold the plugin configuration.
as_value()
Returns an hash reference with two keys : 'plugin' which contains the selected plugin and 'properties' which is an hash reference
containing the plugin's properties.
get( $name )
Delegates to the Dictionary which contains the plugin's properties.
set( $name, $value )
Delegates to the Dictionary which contains the plugin's properties.
is_set( $name )
Delegates to the Dictionary which contains the plugin's properties.
Lire 2.1.1 2006-07-23 Plugin(3pm)