Forum: Perl Aug 13th, 2005 |
| Replies: 1 Views: 10,110 Hi folks,
I'm prepared to write a simple perl scripts as follow
There are 25 commands executed in following sequenceexport LFS=/mnt/lfs
mount /dev/hda6 /mnt/lfs
mkdir -p $LFS
echo $LFS... |
Forum: Perl Dec 6th, 2004 |
| Replies: 4 Views: 16,993 Hi alc6379,
Tks for your advice. Problem solved already.
B.R.
satimis |
Forum: Perl Dec 6th, 2004 |
| Replies: 2 Views: 5,153 Hi alc6379,
Tks for your advice.
Major problem already solved with "use Term::ANSIColor qw(:constants);"
!/usr/bin/perl -w
use strict;
use warnings;
use Term::ANSIColor qw(:constants); |
Forum: Perl Nov 13th, 2004 |
| Replies: 2 Views: 5,153 Hi folks,
Perl
===
Please advise how to add 'bold', 'italic', 'colour', etc. such features to the printout. Can HTML syntax work on perl? I tried seeming not applicable.
TIA
B.R. |
Forum: Perl Nov 13th, 2004 |
| Replies: 4 Views: 16,993 Hi folks,
Perl
===
Instead of using following command printing output to a file;
$ perl AAA.pl > /pathto/name_of_file
is it possible adding "print file function" to the script |
Forum: Perl Nov 10th, 2004 |
| Replies: 2 Views: 5,340 Hi alc6379,
Tks for your advice.
I already tried "diff" before posting. It only told me that there is difference existing but not "what is the difference"
I'm learning programming starting... |
Forum: Perl Nov 9th, 2004 |
| Replies: 2 Views: 5,340 Hi folks,
I'm going to make a script checking inconsistence on 2 documents, say doc_a and doc_b and have no idea how to start.
doc_b is reproduced from doc_a, (original document) not with 'copy... |