[newbie] Signature Script - Fortune

2004-05-08 Per discussione David
Hi List, Early last month I posted with regards to my signature script and fortune. It all works well but about the same time someone posted and gave a code, for want of a better word to follow the fortune line to limit the size of the fortune affixed to the signature. Have seached my mails for

Re: [newbie] Signature Script - Fortune

2004-05-08 Per discussione JoeHill
On Sat, 08 May 2004 12:16:43 +1200 David disseminated the following: limit the size of the fortune affixed to the signature. Add the -s switch to the fortune command, and it will choose only 'short' quotes. -- JoeHill RLU #282046 / www.orderinchaos.org Kernel 2.4.22-21.tmb.1mdk Mandrake

[newbie] OO script

2004-05-07 Per discussione Troy T. Hall
I need to make a script that will choose a random name from a list of names ( up to 6 ) and then fill in a cell with that name. Its for assigning people to chores. Any suggestions would be appreciated. Troy T. Hall[EMAIL PROTECTED] ---Outgoing mail is certified Virus Free.Checked by AVG

[newbie] Signature script

2004-05-04 Per discussione Chris
Well, I'm lost on this one. I'm definately no script guy and I can't figure out why the 'fortune' line doesn't work when the script is ran in Kmail but works when ran from the CLI. Any ideas on where I'm screwing up? #!/bin/bash echo Regards echo Chris echo A 100% Microsoft Free Computer echo

Re: [newbie] signature script comes out weird

2004-01-30 Per discussione Charles A Edwards
On Thu, 29 Jan 2004 23:24:01 -0700 jason pearl [EMAIL PROTECTED] wrote: it comes out like this How do you want it to look? Post the script that you are using. Charles -- The cutting edge is getting rather dull. -- Andy Purshottam - Mandrake Linux

Re: [newbie] signature script comes out weird

2004-01-30 Per discussione Todd Slater
On Thu, Jan 29, 2004 at 11:24:01PM -0700, jason pearl wrote: whenever i try to use a script it puts my sig in one continuous line. is there a reason it does this? i have the same script as before, it is just copied. it comes out like this jason pearl [EMAIL

Re: [newbie] Valid Script Name in Evolution

2004-01-30 Per discussione Josenildo Marques
On Fri, 2004-01-30 at 14:12, Larry Varney wrote: I'm trying to add a script as my signature within Evolution. I have created a script and tested it within a shell, and it works. But when I try to add it within Evolution, even when I browse to the correct script, I keep getting told to

[newbie] signature script comes out weird

2004-01-29 Per discussione jason pearl
whenever i try to use a script it puts my sig in one continuous line. is there a reason it does this? i have the same script as before, it is just copied. it comes out like this jason pearl [EMAIL PROTECTED]++Keep your friends

[newbie] newbie script help

2004-01-04 Per discussione mike
Greetings and Happy NewYear, I would like to write a script to accomplish a task, and then run it at regular intervals (I'll start another thread for that). The thing is I know zero about programming and in process of learning. I have a stand-alone firewall (mdk9.1) with no X installed, and a

Re: [newbie] newbie script help

2004-01-04 Per discussione Paul
Hi Mike, Your script to 'logrotate' the files could look like this: #!/bin/sh filetest() { if [ -f wireless_stat$1.tar ] ; then mv -f wireless_stat$1.tar wireless_stat$2.tar fi } cd /directory where your files are filetest 4 5 filetest 3 4 filetest 2 3 filetest 1 2 The filetest function

Re: [newbie] newbie script help

2004-01-04 Per discussione mike
Paul wrote: Hi Mike, Your script to 'logrotate' the files could look like this: #!/bin/sh filetest() { if [ -f wireless_stat$1.tar ] ; then mv -f wireless_stat$1.tar wireless_stat$2.tar fi } cd /directory where your files are filetest 4 5 filetest 3 4 filetest 2 3 filetest 1 2 The

Re: [newbie] newbie script help

2004-01-04 Per discussione Paul
On 01/04/2004 07:30 PM, mike wrote: I think I understand the function is to take the oldest which is the first argument if it exists rename it to the second argument. Yup. So it cd's to my file directory and sees if wireless_stat3.tar it would filetest 3 4 (rename file3.tar to file4.tar) and 2

Re: [newbie] newbie script help

2004-01-04 Per discussione mike
Paul wrote: On 01/04/2004 07:30 PM, mike wrote: I think I understand the function is to take the oldest which is the first argument if it exists rename it to the second argument. Yup. So it cd's to my file directory and sees if wireless_stat3.tar it would filetest 3 4 (rename file3.tar to

Cron (was Re: [newbie] newbie script help)

2004-01-04 Per discussione Paul
On 01/04/2004 08:32 PM, mike wrote: I'll probably post back on the running the cron part but, I'll research it a bit more before I panic. :-) Your friends there will be: man crontab man 5 crontab and perhaps also man cron It is not difficult, just something you need to get used to. su to

Re: Cron (was Re: [newbie] newbie script help)

2004-01-04 Per discussione robin
Paul wrote: On 01/04/2004 08:32 PM, mike wrote: I'll probably post back on the running the cron part but, I'll research it a bit more before I panic. :-) Your friends there will be: man crontab man 5 crontab and perhaps also man cron It is not difficult, just something you need to get used

Re: Cron (was Re: [newbie] newbie script help)

2004-01-04 Per discussione Anne Wilson
On Sunday 04 January 2004 22:00, robin wrote: For those who think life is too short for vi, there is also kcron. and Webmin Anne -- Registered Linux User No.293302 Have you visited http://twiki.mdklinuxfaq.org yet? Want to buy your Pack or Services from MandrakeSoft? Go to

[newbie] bash-script to umount win partitions then kppp

2003-11-11 Per discussione Johan
Hi What I would like to do is...with some script Use kppp to connect internet BUT to umount my windows partitions before activating kppp. I usually forget to umount my win part. - I have read it is better to do this and protect win part against virusses. With a script I can force the

RE: [newbie] bash-script to umount win partitions then kppp

2003-11-11 Per discussione Tony S. Sykes
. -Original Message- From: Johan [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 11, 2003 10:28 AM To: newbie Subject: [newbie] bash-script to umount win partitions then kppp Hi What I would like to do is...with some script Use kppp to connect internet BUT to umount my windows

Re: [newbie] bash-script to umount win partitions then kppp

2003-11-11 Per discussione Derek Jennings
On Tuesday 11 Nov 2003 10:28 am, Johan wrote: Hi What I would like to do is...with some script Use kppp to connect internet BUT to umount my windows partitions before activating kppp. Thanks Where did you read that? It is nonsense. If you connecting with Linux you are not going to

R: [newbie-it] Script

2003-11-04 Per discussione Luciano Varotti
snip quello che mi serve e' una semplice moltiplicazione snip all'interno di uno script di shell mi sembra che funzioni così: x=((2 * 2)) oppure così x=[2 * 2]

Re: [newbie-it] Script

2003-11-03 Per discussione Luigi Beltramini
La tua domanda dovrebbe tramutarsi in qualcosa del tipo: - qual'è la sintassi per inserire dei calcoli negli script bash? Risposta (man bash) ho visto ma non ho capito molto A parte gli scherzi, fai domande più specifiche, anche se credo tu allora, scusate se sono stato un po' vago

RE: [newbie-it] Script

2003-10-29 Per discussione Mario Lodi Rizzini
-- Messaggio originale -- Date: Tue, 28 Oct 2003 16:34:50 +0100 From: Luigi Beltramini [EMAIL PROTECTED] To: MandrakeMl [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Subject: [newbie-it] Script salve, sapete se e' possibile effettuare calcoli matematici all'interno degli script? Questo che

[newbie-it] Script

2003-10-28 Per discussione Luigi Beltramini
salve, sapete se e' possibile effettuare calcoli matematici all'interno degli script?

R: [newbie-it] Script

2003-10-28 Per discussione [Gnomix]
Che tipo di script intendi? -Messaggio originale- Da: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Per conto di Luigi Beltramini Inviato: martedì 28 ottobre 2003 16.35 A: MandrakeMl Oggetto: [newbie-it] Script salve, sapete se e' possibile effettuare calcoli matematici all'interno degli

Re: [newbie-it] Script

2003-10-28 Per discussione Arwan
E' inutile che tu faccia finta di nulla e ti guardi intorno, caro Luigi Beltramini, perche' ho le prove, il martedì 28 ottobre 2003, alle 16:34 hai scritto: salve, sapete se e' possibile effettuare calcoli matematici all'interno degli script? Per certo non lo so, ma suppongo di si': come

[newbie] post script to html

2003-09-17 Per discussione ed tharp
I am sure there are lots of filters to render a postscript document to html. What I am hoping for is some recommendations from someone who has tried a few, and can suggest which they found produces the best html, easiest. -- ++ Mandrake HowTo's More:

[newbie-it] script

2003-09-12 Per discussione Rev.Ferris
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ciao a tutti; stavo scrivendo uno script in modo che mi automatizzasse le operazioni di ripping di un dvd. Ora dopo la prima operazione di estrazione del sonoro lui mi estrae delle informazioni utili per la compressione video. Quel che voglio fare

Re: [newbie-it] script per shell problematico

2003-09-09 Per discussione miKe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Alle 23:45, sabato 6 settembre 2003, in merito a Re: [newbie-it] script per shell problematico, Giorgio Griffon ha scritto: Avevo ideato un sistema incasinatissimo di javascript per costruire automaticamente le pagine al momento

Re: [newbie-it] script per shell problematico

2003-09-08 Per discussione Giorgio Griffon
Alle 10:48, domenica 7 settembre 2003, Giovanni Mazzamati ha scritto: Nell'eventualità che io venga frainteso... Ho dato della spia ad Arwan, perchè ha asserito che miKe mangia come un majale. Tu dovresti sapere qualcosa di majalinux, vero? ;-P Qualcosa sì. Comunque tutte le battute erano

Re: [newbie-it] script per shell problematico

2003-09-08 Per discussione Arwan
Deve aver avuto molto sonno, perche' il lunedì 08 settembre 2003, alle 17:07, Giorgio Griffon ha scritto: % Ho dato della spia ad Arwan, perchè ha asserito che miKe mangia come un majale. Tu dovresti sapere qualcosa di majalinux, vero? ;-P Qualcosa sì. Comunque tutte le battute erano

Re: [newbie-it] script per shell problematico

2003-09-07 Per discussione Giovanni Mazzamati
Il 23:45, sabato 06 settembre 2003 alle 23:45, sabato 06 settembre 2003, Giorgio Griffon su Re: [newbie-it] script per shell problematico - ha sfarfugliato: A michè, quì mistificano!!! ;-PP Vabbè se vedemeo domenica alla sagra della porchetta e je famo vedè noi!!! Mah, potrei anche

Re: [newbie-it] script per shell problematico

2003-09-06 Per discussione miKe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Alle 08:29, venerdì 5 settembre 2003, in merito a Re: [newbie-it] script per shell problematico, Arwan ha scritto: Deve aver avuto molto sonno, perche' il venerdì 05 settembre 2003, alle 01:09, miKe ha scritto: % poi ci spiegherai che ci

Re: [newbie-it] script per shell problematico

2003-09-06 Per discussione Giorgio Griffon
Alle 16:25, venerdì 5 settembre 2003, Giovanni Mazzamati ha scritto: Il 08:29, venerdì 05 settembre 2003 alle 08:29, venerdì 05 settembre 2003, Arwan su Re: [newbie-it] script per shell problematico - ha sfarfugliato: Deve aver avuto molto sonno, perche' il venerdì 05 settembre 2003, alle

Re: [newbie-it] script per shell problematico

2003-09-05 Per discussione Giovanni Mazzamati
Il 08:29, venerdì 05 settembre 2003 alle 08:29, venerdì 05 settembre 2003, Arwan su Re: [newbie-it] script per shell problematico - ha sfarfugliato: Deve aver avuto molto sonno, perche' il venerdì 05 settembre 2003, alle 01:09, miKe ha scritto: % poi ci spiegherai che ci devi fare... ;P

Re: [newbie] Bash Script to change file prefix

2003-09-05 Per discussione bascule
okay josenildo, if you don't have exif support in your camera then you might want to rename files based on their timestamp, i do this with my camera because it also creates avis and wavs, by renaming them before editing the 'modification' timestamp of the files is the time they were created, i

Re: [newbie-it] script per shell problematico

2003-09-04 Per discussione Giorgio Griffon
GRANDE MIKE!!! E' proprio quello di cui avevo bisogno, funziona perfettamente! Ho un'istanza di wget, richiamata più volte, in quanto ogni volta crea una pagina diversa e la salva in un file diverso (e in cartelle diverse): #!/bin/bash NUMPAGINE=50 LISTA=it de en for LINGUA in $LISTA do

Re: [newbie-it] script per shell problematico

2003-09-04 Per discussione miKe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Alle 23:20, giovedì 4 settembre 2003, in merito a Re: [newbie-it] script per shell problematico, Giorgio Griffon ha scritto: Ho un'istanza di wget, richiamata più volte, in quanto ogni volta crea una pagina diversa e la salva in un file

Re: [newbie-it] script per shell problematico

2003-09-04 Per discussione Arwan
Deve aver avuto molto sonno, perche' il venerdì 05 settembre 2003, alle 01:09, miKe ha scritto: % poi ci spiegherai che ci devi fare... ;P Non dirglielo, che poi ti scrocca una cena! (E mangia come un majale!) Arwan -- There's so many different worlds So many different suns And we have

Re: [newbie] Bash Script to change file prefix

2003-09-04 Per discussione roland
These are digital camera pix , the product of an event to which I would like to add a replacement prefix for dsci to reflect the nature of the event and a date, so in this case I might choose something lile bankholiday240803followed by 0001.jpg etc. Can someone suggest a

Re: [newbie] Bash Script to change file prefix

2003-09-04 Per discussione Josenildo Marques
On Thu, 2003-09-04 at 09:37, Todd Slater wrote: On Thu, Sep 04, 2003 at 12:43:55AM -0300, Josenildo Marques wrote: On Thu, 2003-09-04 at 00:34, Todd Slater wrote: On Thu, Sep 04, 2003 at 12:13:05AM -0300, Josenildo Marques wrote: On Wednesday 03 September 2003 19:40, Todd Slater wrote:

Re: [newbie] Bash Script to change file prefix

2003-09-04 Per discussione Josenildo Marques
On Thu, 2003-09-04 at 09:37, Todd Slater wrote: On Thu, Sep 04, 2003 at 12:43:55AM -0300, Josenildo Marques wrote: On Thu, 2003-09-04 at 00:34, Todd Slater wrote: On Thu, Sep 04, 2003 at 12:13:05AM -0300, Josenildo Marques wrote: On Wednesday 03 September 2003 19:40, Todd Slater wrote:

Re: [newbie] Bash Script to change file prefix

2003-09-03 Per discussione Josenildo Marques
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 25 August 2003 15:35, Todd Slater wrote: On Mon, Aug 25, 2003 at 03:10:45PM +, John Richard Smith wrote: OK, so this is a tipical download via my smart card reader, [EMAIL PROTECTED] root]# cd /root/sane2 [EMAIL PROTECTED] sane2]#

Re: [newbie] Bash Script to change file prefix

2003-09-03 Per discussione Todd Slater
On Wed, Sep 03, 2003 at 06:50:26PM -0300, Josenildo Marques wrote: My getpix script will do this--you're welcome to take a look at it and see how I did the renaming scheme, which is basically called like getpix -n bankholiday which would give you bankholiday-001.jpg I tried the rename

Re: [newbie] Bash Script to change file prefix

2003-09-03 Per discussione Mark
On Wed, 3 Sep 2003, Josenildo Marques wrote: I tried the rename script, but I can't get the date to appear, even using the -d switch... TIA -- cyb Cyb, I'm assuming you're working with a bash script and I've used bash for this, but I've found perl to be easier to work with. I've

Re: [newbie] Bash Script to change file prefix

2003-09-03 Per discussione Josenildo Marques
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wednesday 03 September 2003 20:23, Mark wrote: On Wed, 3 Sep 2003, Josenildo Marques wrote: I tried the rename script, but I can't get the date to appear, even using the -d switch... TIA -- cyb Cyb, I'm assuming you're working

Re: [newbie] Bash Script to change file prefix

2003-09-03 Per discussione Josenildo Marques
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wednesday 03 September 2003 19:40, Todd Slater wrote: On Wed, Sep 03, 2003 at 06:50:26PM -0300, Josenildo Marques wrote: My getpix script will do this--you're welcome to take a look at it and see how I did the renaming scheme, which is

Re: [newbie] Bash Script to change file prefix

2003-09-03 Per discussione Todd Slater
On Thu, Sep 04, 2003 at 12:13:05AM -0300, Josenildo Marques wrote: On Wednesday 03 September 2003 19:40, Todd Slater wrote: On Wed, Sep 03, 2003 at 06:50:26PM -0300, Josenildo Marques wrote: I tried the rename script, but I can't get the date to appear, even using the - -d switch...

Re: [newbie] Bash Script to change file prefix

2003-09-03 Per discussione Josenildo Marques
On Thu, 2003-09-04 at 00:34, Todd Slater wrote: On Thu, Sep 04, 2003 at 12:13:05AM -0300, Josenildo Marques wrote: On Wednesday 03 September 2003 19:40, Todd Slater wrote: On Wed, Sep 03, 2003 at 06:50:26PM -0300, Josenildo Marques wrote: I tried the rename script, but I can't get

Re: [newbie-it] script per shell problematico

2003-09-02 Per discussione miKe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Alle 23:58, giovedì 28 agosto 2003, in merito a Re: [newbie-it] script per shell problematico, Giorgio Griffon ha scritto: automatica. In pratica, a mano io apro un programma di testo come kwrite o vi e al posto di un file chiamo http

Re: [newbie-it] script per shell problematico

2003-08-28 Per discussione Giorgio Griffon
Scusa, mi sono spiegato male. Il mio problema non è cambiare delle stringhe di testo, né far variare dei parametri, bensì far interpretare un codice in php e ottenerne il relativo html in maniera automatica. In pratica, a mano io apro un programma di testo come kwrite o vi e al posto di un file

Re: [newbie-it] script per shell problematico

2003-08-27 Per discussione Andrea Celli
Alle 22:58, martedì 26 agosto 2003, Giorgio Griffon ha scritto: Ciao a tutti, ho un problema un po' complicato: devo preparare numerose pagine web e, poiché sono simili tra loro, ho deciso di usare il php in modo da ottenere bell'e pronto il codice html, al variare di un paio di parametri.

Re: [newbie-it] script per shell problematico

2003-08-27 Per discussione Arwan
Deve aver avuto molto sonno, perche' il martedì 26 agosto 2003, alle 20:58, Giorgio Griffon ha scritto: Snippone Qualcuno sa darmi un suggerimento a questo proposito? Forse si' (ho detto _forse_): telefonami! Arwan -- There's so many different worlds So many different suns And we have

[newbie-it] script per shell problematico

2003-08-26 Per discussione Giorgio Griffon
Ciao a tutti, ho un problema un po' complicato: devo preparare numerose pagine web e, poiché sono simili tra loro, ho deciso di usare il php in modo da ottenere bell'e pronto il codice html, al variare di un paio di parametri. Però ho pensato che grazie a linux il lavoro può essere

[newbie] Bash Script to change file prefix

2003-08-25 Per discussione John Richard Smith
OK, so this is a tipical download via my smart card reader, [EMAIL PROTECTED] root]# cd /root/sane2 [EMAIL PROTECTED] sane2]# ls dsci0001.jpg* dsci0007.jpg* dsci0013.jpg* dsci0019.jpg* dsci0025.jpg* dsci0002.jpg* dsci0008.jpg* dsci0014.jpg* dsci0020.jpg* dsci0026.jpg* dsci0003.jpg*

Re: [newbie] Bash Script to change file prefix

2003-08-25 Per discussione Kaj Haulrich
On Monday 25 August 2003 03:10 pm, John Richard Smith wrote: OK, so this is a tipical download via my smart card reader, [EMAIL PROTECTED] root]# cd /root/sane2 [EMAIL PROTECTED] sane2]# ls dsci0001.jpg* dsci0007.jpg* dsci0013.jpg* dsci0019.jpg* dsci0025.jpg* dsci0002.jpg* dsci0008.jpg*

Re: [newbie] Bash Script to change file prefix

2003-08-25 Per discussione Todd Slater
On Mon, Aug 25, 2003 at 03:10:45PM +, John Richard Smith wrote: OK, so this is a tipical download via my smart card reader, [EMAIL PROTECTED] root]# cd /root/sane2 [EMAIL PROTECTED] sane2]# ls dsci0001.jpg* dsci0007.jpg* dsci0013.jpg* dsci0019.jpg* snip These are digital camera pix ,

Re: [newbie] Bash Script to change file prefix

2003-08-25 Per discussione Paul
On Mon, 2003-08-25 at 20:35, Todd Slater wrote: Also out of pure curiosity why does the file names all end in * ? I believe it means they are executable. You believe correctly. -- To himself everyone is immortal; he may know that he is going to die, but he can never know that he is

Re: [newbie] Eastern Script emails

2003-08-14 Per discussione Stephen Kuhn
On Wed, 2003-08-13 at 20:24, John Richard Smith wrote: Mozilla1.4 For quite some time now my emailer insists on downloading Chinese scripted emails. These I have no chance of reading. Anyone know how to stop it. John There are ways of using PROCMAIL to detect the language settings and

[newbie] Eastern Script emails

2003-08-14 Per discussione John Richard Smith
Mozilla1.4 For quite some time now my emailer insists on downloading Chinese scripted emails. These I have no chance of reading. Anyone know how to stop it. John -- John Richard Smith [EMAIL PROTECTED] Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com

[newbie] bash script to send files to tar from rox-filer

2003-07-20 Per discussione Eric Huff
I program quite a bit in other languages, but am somewhat new to bash, so this may not be the most elegant program, but i'm having fun learning it! Anyway, i put this in ~/Choices/SendTo as tar_rox In rox-filer, if you select several files or dirs and Send To tar_rox, it'll tar them up in the

Re: [newbie] bash script to send files to tar from rox-filer

2003-07-20 Per discussione JoeHill
On Sun, 20 Jul 2003 11:59:19 -0700 Eric Huff [EMAIL PROTECTED] uttered: In rox-filer, if you select several files or dirs and Send To tar_rox, it'll tar them up in the same directory w/o the entire path to the files/dirs. (any structure w/i the dir will be preserved). Ok. I am more than new

Re: [newbie] bash script to send files to tar from rox-filer

2003-07-20 Per discussione Eric Huff
In rox-filer, if you select several files or dirs and Send To tar_rox, it'll tar them up in the same directory w/o the entire path to the files/dirs. (any structure w/i the dir will be preserved). Ok. I am more than new to bash scritpting, but won't ROX archive do this? Probably. I

Re: [newbie] bash script to send files to tar from rox-filer

2003-07-20 Per discussione Todd Slater
On Sun, 20 Jul 2003 11:59:19 -0700 Eric Huff [EMAIL PROTECTED] wrote: The if chunk's purpose is to strip the filenames off the arguments, since they come in with full paths, and to find the path of the files (since pwd is ~/). I don't know if `basename` will help you with that or not. Todd

Re: [newbie] bash script to send files to tar from rox-filer

2003-07-20 Per discussione Eric Huff
I don't know if `basename` will help you with that or not. Yes! That's way better. That's the area where i will have to learn the most: what functions are out there. It's fun to learn the hard way, too, though... Thanks for the command, eric Here's the basename version:

[newbie] Perl Script in Background

2003-05-27 Per discussione Cody Harris
How do i tell a script (perl script) to start in the background and stay running? -Cody Harris ++ | Linux Rox My Sox! | | Check out HCHS! | | http://vectec.net | ++--+ | Proud to use Mandrake Linux 8.1 as a server. | | Not

Re: [newbie] Perl Script in Background

2003-05-27 Per discussione Stephen Kuhn
On Wed, 2003-05-28 at 10:40, Cody Harris wrote: How do i tell a script (perl script) to start in the background and stay running? -Cody Harris For instance: perl /usr/local/bin/rdf.pl -- Wed May 28 11:20:01 EST 2003 11:20:01 up 13:53, 3 users, load average: 0.32, 0.29, 0.29

Re: [newbie] Perl Script in Background

2003-05-27 Per discussione Jan Wilson
* Cody Harris [EMAIL PROTECTED] [030527 19:15]: How do i tell a script (perl script) to start in the background and stay running? If you are running it from the command line, put a space and an ampersand after the name of the Perl script, like: myscript -- Jan Wilson, SysAdmin

Re: [newbie] Perl Script in Background

2003-05-27 Per discussione Rob Blomquist
On Tuesday 27 May 2003 05:40 pm, Cody Harris wrote: How do i tell a script (perl script) to start in the background and stay running? At the command line, starting a file with a ending will make it run in background. As in ./setiathome . I hope that helps. -- Linux: For the people, by the

Re: [newbie-it] Script per init 6 con aggiunte

2003-02-09 Per discussione IRON
Alle 18:02, sabato 25 gennaio 2003, Stefano Sebastiani ha scritto: Non c'è nessuno che mi possa aiutare a fare i due script di cui sopra? mah.. io di solito per fare quello che vuoi tu uso il comando: #rebootin windows dove 'windows' è la relativa voce di LILO... E' chiaramente possibile

[newbie-it] Script per init 6 con aggiunte

2003-01-23 Per discussione Stefano Sebastiani
Ho bisogno di creare uno script che faccia tre cose 1) init 6 2) lilo con opzione linux (meglio se in modalità single) 3)init 0. ho provato con: init 6:lilo;linux:init 0 ma non funziona esegue subito init 0! eppure avevo uno script tipo init 6:lilo;win che lanciava Windows ma ora non funziona

Re: [newbie] getpix script with Fuji digital camera

2003-01-01 Per discussione Steve Jeppesen
On Tue, 31 Dec 2002 14:08:59 + Anne Wilson [EMAIL PROTECTED] wrote: Hehe, we're all newbies here (at least almost all). Perhaps others with chip in with ideas that you could try for me, but for the moment, could you please run cdroast --scanbus and post up the output? It may help

Re: [newbie] getpix script with Fuji digital camera

2003-01-01 Per discussione Anne Wilson
On Wednesday 01 Jan 2003 5:13 pm, Steve Jeppesen wrote: On Tue, 31 Dec 2002 14:08:59 + Anne Wilson [EMAIL PROTECTED] wrote: Hehe, we're all newbies here (at least almost all). Perhaps others with chip in with ideas that you could try for me, but for the moment, could you please run

Re: [newbie] getpix script with Fuji digital camera

2002-12-31 Per discussione Steve Jeppesen
Another thought Anne, I have the Finepix S303 so I am assuming your camera is close to the same. Last night I found out the camera is supposed to be in DSC USB mode when you plug it in. I was thinking to myself that it always is in DSC USB mode so I never thought anything about it. When I was

Re: [newbie] getpix script with Fuji digital camera

2002-12-31 Per discussione Anne Wilson
On Tuesday 31 Dec 2002 12:00 pm, Steve Jeppesen wrote: Another thought Anne, I have the Finepix S303 so I am assuming your camera is close to the same. Last night I found out the camera is supposed to be in DSC USB mode when you plug it in. I was thinking to myself that it always is in DSC

Re: [newbie] getpix script with Fuji digital camera

2002-12-31 Per discussione ampster40
Yes, mine has the xD memory (I am at work so I forget if it is dX or xD! LOL) but that is what mine shows also when I plug in the usb cable. I just assumed that was the way it was - did not know that it could be used as a pc camera also. For now, I do not need the function of a pc (web)

Re: [newbie] getpix script with Fuji digital camera

2002-12-31 Per discussione Anne Wilson
On Tuesday 31 Dec 2002 2:01 pm, [EMAIL PROTECTED] wrote: Yes, mine has the xD memory (I am at work so I forget if it is dX or xD! LOL) but that is what mine shows also when I plug in the usb cable. I just assumed that was the way it was - did not know that it could be used as a pc camera

Re: [newbie] getpix script with Fuji digital camera

2002-12-29 Per discussione Steve Jeppesen
Ok, my problem was that instead of /dev/sda1, it needs to be listed in fstab as /dev/sdb1...discovered that by accident after doing a cdrecord -scanbus with the camera turned on. It now (sound of knocking on wood here) remembers the settings and I have a little icon setup on my Roxfiler panel,

Re: [newbie] getpix script with Fuji digital camera

2002-12-20 Per discussione Todd Slater
On Thu, 19 Dec 2002 06:41:47 -0600 Steve Jeppesen [EMAIL PROTECTED] wrote: Thanks Todd, Sorry, I should have done a search on getpix - I would have found that you have posted this info already. I will take some pics today and try out your script tonight. p.s., I like the sound of mount

Re: [newbie] getpix script with Fuji digital camera

2002-12-20 Per discussione Steve Jeppesen
Thanks for the update Todd, tried the previous script out last night and it works great! 'Cept for I still have a problem where after a reboot, my system did not remember that I had the camera connected to the usb port - so I had to reboot once more with the camera connected then it worked.

Re: [newbie] getpix script with Fuji digital camera

2002-12-20 Per discussione Todd Slater
Steve- comments mixed in. On Fri, 20 Dec 2002 22:21:40 -0600 Steve Jeppesen [EMAIL PROTECTED] wrote: Thanks for the update Todd, tried the previous script out last night and it works great! 'Cept for I still have a problem where after a reboot, my system did not remember that I had the

Re: [newbie] getpix script with Fuji digital camera

2002-12-19 Per discussione Steve Jeppesen
Thanks Todd, Sorry, I should have done a search on getpix - I would have found that you have posted this info already. I will take some pics today and try out your script tonight. p.s., I like the sound of mount /mnt/fuji too! LOL On Wed, 18 Dec 2002 23:00:50 -0500 Todd Slater [EMAIL

[newbie] getpix script with Fuji digital camera

2002-12-18 Per discussione Steve Jeppesen
I have searched the archives and cannot locate who sent this script. I have a question about the part of the script which mounts the camera... CAM=/mnt/camera # Mountpoint for your camera (this used to read CAM=/mnt/fuji I think) and later in the script it mounts the camera (i

Re: [newbie] getpix script with Fuji digital camera

2002-12-18 Per discussione Todd Slater
On Wed, 18 Dec 2002 21:03:11 -0600 Steve Jeppesen [EMAIL PROTECTED] wrote: I have searched the archives and cannot locate who sent this script. I have a question about the part of the script which mounts the camera... CAM=/mnt/camera # Mountpoint for your camera (this used to

Re: [newbie] getpix script with Fuji digital camera

2002-12-18 Per discussione Bryan Tyson
On Wednesday 18 December 2002 22:03, Steve Jeppesen wrote: CAM=/mnt/camera # Mountpoint for your camera (this used to read CAM=/mnt/fuji I think) and later in the script it mounts the camera (i think) with mount $CAM Is this correct? Seems like it is missing this; -t vfat

Re: [newbie] login script modification

2002-12-17 Per discussione L.V.Gandhi
On Monday 16 Dec 2002 4:16 pm, Derek Jennings wrote: On Sunday 15 Dec 2002 6:42 am, L.V.Gandhi wrote: On Friday 13 Dec 2002 7:02 am, Todd Slater wrote: On Thu, 12 Dec 2002 19:21:35 +0530 L.V.Gandhi [EMAIL PROTECTED] wrote: I am using KDM for login in mdk 9. I want a script to be

Re: [newbie] login script modification

2002-12-16 Per discussione Derek Jennings
On Sunday 15 Dec 2002 6:42 am, L.V.Gandhi wrote: On Friday 13 Dec 2002 7:02 am, Todd Slater wrote: On Thu, 12 Dec 2002 19:21:35 +0530 L.V.Gandhi [EMAIL PROTECTED] wrote: I am using KDM for login in mdk 9. I want a script to be executed as root whenever somebody do login so that it can

[newbie] configure script errors

2002-12-15 Per discussione ashutosh
I have following software already installed : libqt3-3.0.5-7mdk libqt3-devel-3.0.5-7mdk But while installing some softwares and running the configure script i get the failure message similar to: ' configure : error: Qt (= Qt 2.2.2) (headers and libraries) not found.Please check your

Re: [newbie] configure script errors

2002-12-15 Per discussione Stephen Kuhn
On Sun, 2002-12-15 at 20:32, ashutosh wrote: I have following software already installed : libqt3-3.0.5-7mdk libqt3-devel-3.0.5-7mdk But while installing some softwares and running the configure script i get the failure message similar to: ' configure : error: Qt (= Qt 2.2.2) (headers and

[newbie-it] script e operazioni su variabili di testo

2002-12-14 Per discussione Arwan
Sempre cercando di automatizzare il processo di conversione dei file wav in mp3, mi sono trovata con uno script che vorrei migliorare. In pratica ho una variabile TIT che e' del tipo audio_xx.wav, dove xx e' un numero. Vorrei estrarre da questa variabile l'informazione xx, e assegnarla ad una

[newbie] configure script failure

2002-12-14 Per discussione ashutosh
while installing some softwares and running the configure script i get the failure message similar to: ' configure : error: Qt (= Qt 2.2.2) (headers and libraries) not found.Please check your installation.' What i am missing as i think i have Qt3 installed. Want to buy your Pack or Services

Re: [newbie] configure script failure

2002-12-14 Per discussione magnet
On Friday 13 Dec 2002 11:58 am, ashutosh wrote: while installing some softwares and running the configure script i get the failure message similar to: ' configure : error: Qt (= Qt 2.2.2) (headers and libraries) not found.Please check your installation.' What i am missing as i think i have

Re: [newbie] configure script failure

2002-12-14 Per discussione ashutosh
I have following software already installed : libqt3-3.0.5-7mdk libqt3-devel-3.0.5-7mdk Can u calrify what else i need to install,because i don't think any other appropriate Qt packages are on Cds. On Saturday 14 December 2002 02:52 pm, magnet wrote: On Friday 13 Dec 2002 11:58 am, ashutosh

Re: [newbie] login script modification

2002-12-12 Per discussione Todd Slater
On Thu, 12 Dec 2002 19:21:35 +0530 L.V.Gandhi [EMAIL PROTECTED] wrote: I am using KDM for login in mdk 9. I want a script to be executed as root whenever somebody do login so that it can modify permission of some files that can be changed only by root. How to do it? How about creating a new

Re: [newbie-it] script e crisi

2002-09-28 Per discussione biss
Il ven, 2002-09-27 alle 09:46, Mario Lodi Rizzini ha scritto: -- Initial Header --- From: [EMAIL PROTECTED] To : [EMAIL PROTECTED] Cc : Date: Thu, 26 Sep 2002 21:35:30 +0200 Subject : [newbie-it] script e crisi ...cut... #!/bin/bash #copia i

Re: [newbie-it] script e crisi

2002-09-27 Per discussione Mario Lodi Rizzini
-- Initial Header --- From: [EMAIL PROTECTED] To : [EMAIL PROTECTED] Cc : Date: Thu, 26 Sep 2002 21:35:30 +0200 Subject : [newbie-it] script e crisi ...cut... #!/bin/bash #copia i file rtf su floppy mount /dev/fd0 /mnt/floppy cd /mnt

[newbie-it] script e crisi

2002-09-26 Per discussione Arwan
Premesso che non so se lo script sia corretto (ogni suggerimento e' ben accetto), vorrei sapere come farlo partire... Lo scopo e' questo: copiare una serie di file su floppy (in disco fisso sono persi in una sottocartella di una delle tante partizioni) semplicemente cliccando un'icona sul

Re: [newbie-it] script; Mozilla; wvHtml

2002-09-25 Per discussione Stefano Sebastiani
Ho provato un'ìaltra strada antiword con questo script #!/bin/sh PATH=/bin:/usr/bin:/usr/local/bin cp $* $HOME/wvtemp/$* antiword $* $HOME/wvtemp/$$.txt 2/dev/null FILE=$HOME/wvtemp/$$.txt mozilla -remote 'openUrl(file://'$FILE')' rm -f $FILE da locale funzia da internet non và! Dove è che

[newbie] init script

2002-07-25 Per discussione chuck
I have a shell script that I want to be run at boot time. How can I do this? TIA -Chuck Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com

Re: [newbie] init script

2002-07-25 Per discussione et
On Thursday 25 July 2002 07:30 pm, you wrote: I have a shell script that I want to be run at boot time. How can I do this? TIA -Chuck if the question isin dos I would have put this batch file script in autoexec.bat to get it loaded each boot, is there something like that for linux? then

[newbie] Perl Script

2002-07-16 Per discussione Leonard W. Miller
Can somebody tell my why this doesn't work? #!/usr/bin/perl for($x = 1; $x 255; $x++) { snmpwalk 172.17.16.$x public; } Thanks Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com

  1   2   >