Re: Printing the date just before execution of commands in bash

2006-10-13 Thread Scott Gifford
José Alburquerque <[EMAIL PROTECTED]> writes: > Hi all. I'm wondering if anyone knows how I might be able to execute > the same command just before the execution of a command issued at the > prompt of a bash shell. If you're using bash, try something like this: PS1='@$SECONDS $ ' PS4='@

Re: Printing the date just before execution of commands in bash

2006-10-13 Thread José Alburquerque
Dave Whiteley wrote: Looking at things differently... Can you not use the unix "time" command to display the process times on completion? Dave I take it you're referring to the same command already mentioned by Roberto and others. Right? -- Sincerely Jose Alburquerque -- To UNSUBSCRI

Re: Printing the date just before execution of commands in bash

2006-10-13 Thread Ken Irving
On Fri, Oct 13, 2006 at 11:32:03AM -0400, José Alburquerque wrote: > However, I do admit that using time for commands is probably a lot > better. Besides, I can never get a "precise" time with just inserting > the date in the prompt because if the terminal sits idle for som

Re: Printing the date just before execution of commands in bash

2006-10-13 Thread Dave Whiteley
Looking at things differently... Can you not use the unix "time" command to display the process times on completion? Dave -- Dave Whiteley [EMAIL PROTECTED] Phone +44 (0)113 343 2059 Faculty of Engineering The University of Leeds. Leeds, LS2 9JT, UK -- To UNSUBSCRIBE, email to [EMAIL PROTE

Re: Printing the date just before execution of commands in bash

2006-10-13 Thread José Alburquerque
José Alburquerque wrote: Hi all. I'm wondering if anyone knows how I might be able to execute the same command just before the execution of a command issued at the prompt of a bash shell. Oops. Sorry about re-send. Just ignore this please. -- Sincerely Jose Alburquerque -- To UNSUBSCRIBE,

Re: Printing the date just before execution of commands in bash

2006-10-13 Thread José Alburquerque
Matus UHLAR - fantomas wrote: you could try to insert the current date into your prompt (PS1) string, if you want it this way. also, looking at 'man bash', there's special variable: PROMPT_COMMAND If set, the value is executed as a command prior to issuing each primary

Printing the date just before execution of commands in bash

2006-10-13 Thread José Alburquerque
Hi all. I'm wondering if anyone knows how I might be able to execute the same command just before the execution of a command issued at the prompt of a bash shell. Currently, I have my bash prompt set up so that it displays the current date. If I can print the date just before each comma

Re: Printing the date just before execution of commands in bash

2006-10-13 Thread José Alburquerque
e TTY_LBL="unknown" fi if [ -n "${DEL_OPEN}" ]; then TTY_LBL="${DEL_OPEN}${TTY_LBL}${DEL_CLOSE}" elif [ "${SHOW_PWD}" = "1" ]; then TTY_LBL="${DEL_OPEN}${TTY_LBL}${DEL_CLOSE}" fi fi if [ "${SHOW_

Re: Printing the date just before execution of commands in bash

2006-10-13 Thread J.A. de Vries
so that it displays the current > date. If I can print the date just before each command is executed, I > can always be able to get a sense of how long each command has taken. > > Anyone has any idea how I might go about printing the date just before > the execution of each bash

Re: Printing the date just before execution of commands in bash

2006-10-13 Thread Matus UHLAR - fantomas
On 12.10.06 19:10, José Alburquerque wrote: > Hi all. I'm wondering if anyone knows how I might be able to execute > the same command just before the execution of a command issued at the > prompt of a bash shell. you could try to insert the current date into your prompt (PS1) strin

Re: Printing the date just before execution of commands in bash

2006-10-13 Thread Roberto C. Sanchez
On Thu, Oct 12, 2006 at 09:30:58PM -0700, Marc Shapiro wrote: > > I will agree that, if you only have a few commands that you regularly > want timed, then an alias is probably the easiest way to do it. > > I have the following alias: alias pr='pr -F -l 59', and it works just > fine, no recursio

Printing the date just before execution of commands in bash

2006-10-12 Thread José Alburquerque
Hi all. I'm wondering if anyone knows how I might be able to execute the same command just before the execution of a command issued at the prompt of a bash shell. Currently, I have my bash prompt set up so that it displays the current date. If I can print the date just before each co

Re: Printing the date just before execution of commands in bash

2006-10-12 Thread Marc Shapiro
Roberto C. Sanchez wrote: On Thu, Oct 12, 2006 at 08:51:29PM -0400, José Alburquerque wrote: I guess I could do that, it's just that I use certain commands almost "instinctively" and sometimes I forget. A lot of times I'm running certain processes one after the other in several shells. It

Re: Printing the date just before execution of commands in bash

2006-10-12 Thread José Alburquerque
Roberto C. Sanchez wrote: If it is always the same commands, then consider setting them to use the time command as an alias. For example, if you always want to know how long a dd took, then use something like `alias dd='/usr/bin/time /usr/bin/dd'`. Of course, you will need to use dd and not /us

Re: Printing the date just before execution of commands in bash

2006-10-12 Thread Roberto C. Sanchez
On Thu, Oct 12, 2006 at 08:51:29PM -0400, José Alburquerque wrote: > I guess I could do that, it's just that I use certain commands almost > "instinctively" and sometimes I forget. A lot of times I'm running > certain processes one after the other in several shells. It is after > I've run them

Re: Printing the date just before execution of commands in bash

2006-10-12 Thread José Alburquerque
rompt set up so that it displays the current date. If I can print the date just before each command is executed, I can always be able to get a sense of how long each command has taken. Anyone has any idea how I might go about printing the date just before the execution of each bash command? I just

Re: Printing the date just before execution of commands in bash

2006-10-12 Thread Roberto C. Sanchez
pt set up so that it displays the current > date. If I can print the date just before each command is executed, I > can always be able to get a sense of how long each command has taken. > > Anyone has any idea how I might go about printing the date just before > the execution of each bas

Printing the date just before execution of commands in bash

2006-10-12 Thread José Alburquerque
Hi all. I'm wondering if anyone knows how I might be able to execute the same command just before the execution of a command issued at the prompt of a bash shell. Currently, I have my bash prompt set up so that it displays the current date. If I can print the date just before each comma

Is kernel update not up to date?

2006-09-30 Thread Rolf Bode-Meyer
Hi! On 2006-09-27 I did apt-get update && upgrade once again and got a new kernel image (2.6.8-3-powerpc 2.6.8-12sarge5). In the advisory DSA-1184-2 one can read "Date Reported: 25 Sep 2006". But looking at /boot I see "2006-09-07 06:54 vmlinux-2.6.8-3-powerpc" - s

Re: mv files by date

2006-09-03 Thread Jean-Rene David
* Curtis Vaughan [2006.08.31 16:00]: > Can someone tell me the correct command line for moving a bunch of > files between directories that are, say, older than yesterday while > preserving their time stamps? With Z shell: mv *(.m+2) /dest/dir -- JR -- To UNSUBSCRIBE, email to [EMAIL PROT

Re: mv files by date

2006-09-01 Thread Matej Cepl
Ron Johnson wrote: > Shift key? That's what Caps Lock is for. It has been remapped to couple of months ago ;-). Matěj -- GPG Finger: 89EF 4BC6 288A BF43 1BAB 25C3 E09F EF25 D964 84AC http://www.ceplovi.cz/matej/blog/, Jabber: [EMAIL PROTECTED] 23 Marion St. #3, (617) 876-1259, ICQ 132822213

Re: mv files by date

2006-08-31 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Miles Bader wrote: > Ron Johnson <[EMAIL PROTECTED]> writes: >> Or, explicitly: >> $ RENAME/LOG/BEFORE=YESTERDAY *.LOG;* [.NEW_DIR] > > I was gonna try that, but my shift key wore out before I reached the end > of the command. Shift key? That's what

Re: mv files by date

2006-08-31 Thread Matej Cepl
T wrote: > Why not something like (please test before use): > > find ./ -type f ! -mtime -2 -exec mv {} ../ \; Of course, that's the best. Silly me. Matěj -- GPG Finger: 89EF 4BC6 288A BF43 1BAB 25C3 E09F EF25 D964 84AC http://www.ceplovi.cz/matej/blog/, Jabber: [EMAIL PROTECTED] 23 Marion St

Re: mv files by date

2006-08-31 Thread Miles Bader
Ron Johnson <[EMAIL PROTECTED]> writes: > Or, explicitly: > $ RENAME/LOG/BEFORE=YESTERDAY *.LOG;* [.NEW_DIR] I was gonna try that, but my shift key wore out before I reached the end of the command. -Miles -- (\(\ (^.^) (")") *This is the cute bunny virus, please copy this into your sig so it can

Re: mv files by date

2006-08-31 Thread T
On Thu, 31 Aug 2006 13:51:44 -0700, Curtis Vaughan wrote: > find ./ -type f ! -mtime -2 -exec ls -al {} \; | xargs mv ../ > > in order to move the files found in the script up one directory? Why use xargs? find -exec deals with file one at a time. Why not something like (please test before use

Re: mv files by date

2006-08-31 Thread Jeff D
Curtis Vaughan wrote: Ok the following line finds all the files that I want to move out the folder: find ./ -type f ! -mtime -2 -exec ls -al {} \; So, now it's the next part that scares me. Should I do this? find ./ -type f ! -mtime -2 -exec ls -al {} \; | xargs mv ../ in order to move the

Re: mv files by date

2006-08-31 Thread Matej Cepl
Curtis Vaughan wrote: > Should I do this? > > find ./ -type f ! -mtime -2 -exec ls -al {} \; | xargs mv ../ You can but you are doing it too much complicated -- find by default prints on stdout found filename. And concerning xargs -- I don't use it that much (it always confuses me to no end), but

Re: mv files by date

2006-08-31 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Matej Cepl wrote: > Curtis Vaughan wrote: > >> Can someone tell me the correct command line for moving a bunch of >> files between directories that are, say, older than yesterday while >> preserving their time stamps? > > find . \ > while re

Re: mv files by date

2006-08-31 Thread Curtis Vaughan
Ok the following line finds all the files that I want to move out the folder: find ./ -type f ! -mtime -2 -exec ls -al {} \; So, now it's the next part that scares me. Should I do this? find ./ -type f ! -mtime -2 -exec ls -al {} \; | xargs mv ../ in order to move the files found in the scr

Re: mv files by date

2006-08-31 Thread Matej Cepl
Curtis Vaughan wrote: > Can someone tell me the correct command line for moving a bunch of > files between directories that are, say, older than yesterday while > preserving their time stamps? find . \ while read FILE ; do mv $FILE other-directory/$(basename $FILE) done Read fi

mv files by date

2006-08-31 Thread Curtis Vaughan
Can someone tell me the correct command line for moving a bunch of files between directories that are, say, older than yesterday while preserving their time stamps? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

ksh in konsole doesn't run .profile (up to date sarge)

2006-08-30 Thread A. F. Cano
This used to work in woody. Doesn't in sarge, and yes I do start ksh with the -l (login shell) option in the konsole configuration (Execute field). There is a similar bug filed in bugs.debian.org (almost 2 years old) http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=279347 although this person

Re: renaming file to current date ?

2006-08-29 Thread S t i n g r a y
yes exactly --- Florian Kulzer <[EMAIL PROTECTED]> wrote: > On Tue, Aug 29, 2006 at 09:24:26 -0700, S t i n g r > a y wrote: > > Well i want to know if its possible to rename a > file > > to the current date ? > > like if i want to move todays date to t

Re: renaming file to current date ?

2006-08-29 Thread cga2000
On Tue, Aug 29, 2006 at 12:24:26PM EDT, S t i n g r a y wrote: > Well i want to know if its possible to rename a file > to the current date ? > like if i want to move todays date to the file name ? or .. $ touch file .. maybe..? Thanks, cga -- To UNSUBSCRIBE, email to [EMAIL

Re: renaming file to current date ?

2006-08-29 Thread Mathias Brodala
Hello. > Well i want to know if its possible to rename a file > to the current date ? > like if i want to move todays date to the file name ? You can use the ouput of „date“ (format as you wish; see manpage) for renaming files if you want that. > *º¤., ¸¸,.¤º*¨¨¨*¤ Stingray

Re: renaming file to current date ?

2006-08-29 Thread Florian Kulzer
On Tue, Aug 29, 2006 at 09:24:26 -0700, S t i n g r a y wrote: > Well i want to know if its possible to rename a file > to the current date ? > like if i want to move todays date to the file name ? Do you mean something like mv somefile "othername-$(date +%Y%m%d%H%M%S)

Re: renaming file to current date ?

2006-08-29 Thread Steve Kemp
On Tue, Aug 29, 2006 at 09:24:26AM -0700, S t i n g r a y wrote: > Well i want to know if its possible to rename a file > to the current date ? > like if i want to move todays date to the file name ? Say the file you want to rename is "t.txt" you could use: mv t.txt `date

Re: renaming file to current date ?

2006-08-29 Thread Roberto C. Sanchez
On Tue, Aug 29, 2006 at 09:24:26AM -0700, S t i n g r a y wrote: > Well i want to know if its possible to rename a file > to the current date ? > like if i want to move todays date to the file name ? > It is not clear what you want. Can you provide an example? Regards, -Roberto -

renaming file to current date ?

2006-08-29 Thread S t i n g r a y
Well i want to know if its possible to rename a file to the current date ? like if i want to move todays date to the file name ? *º¤., ¸¸,.¤º*¨¨¨*¤ Stingray *º¤., ¸¸,.¤º*¨¨*¤ __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the

ps command time differs with date on 2.6.8-3-686-smp.

2006-08-16 Thread julien WICQUART
Hello, before sending a bug report to Debian, i prefer ask you for this problem. I've got 18 minutes difference between ps command and date command. I don't know if it's a ps bug or not. Here is an example : kernel:2.6.8-3-686-smp node# date; ps faux | grep 'ps'

Re: Why date command don't use my time zone ?

2006-06-29 Thread Magnus Therning
> I'm not sure whether it'll take effect without a reboot. >> >> If you log in using a display manager (GDM, KDM, ...) then it might set >> the locale itself (I know GDM does). AFAIK you have to log out, change >> the locale, then log in again in order to change it.

Re: Why date command don't use my time zone ?

2006-06-29 Thread Bill Marcum
nager (GDM, KDM, ...) then it might set > the locale itself (I know GDM does). AFAIK you have to log out, change > the locale, then log in again in order to change it. > The OP was asking why "date" does not show the time in the correct time zone. That is set by /etc/timezone o

Re: Why date command don't use my time zone ?

2006-06-28 Thread Magnus Therning
On Wed, Jun 28, 2006 at 12:21:51 +0200, KLEIN Stéphane wrote: >Magnus Therning a écrit : >>On Wed, Jun 28, 2006 at 10:27:25 +0200, KLEIN Stéphane wrote: >> >>>Hello, >>> >>>I used tzconfig to set my time zone on Europe/Paris. >>> >>>

Re: Why date command don't use my time zone ?

2006-06-28 Thread KLEIN Stéphane
Magnus Therning a écrit : On Wed, Jun 28, 2006 at 10:27:25 +0200, KLEIN Stéphane wrote: Hello, I used tzconfig to set my time zone on Europe/Paris. I've logout/login and call date command : date Wed Jun 28 08:26:19 UTC 2006 date command use UTC time zone and not Europe/Paris. How

Re: Why date command don't use my time zone ?

2006-06-28 Thread Magnus Therning
On Wed, Jun 28, 2006 at 10:27:25 +0200, KLEIN Stéphane wrote: >Hello, > >I used tzconfig to set my time zone on Europe/Paris. > >I've logout/login and call date command : > >date >Wed Jun 28 08:26:19 UTC 2006 > >date command use UTC time zone and not Europe/Par

Re: Why date command don't use my time zone ?

2006-06-28 Thread John Miller
KLEIN Stéphane wrote: > Hello, > > I used tzconfig to set my time zone on Europe/Paris. > > I've logout/login and call date command : > > date > Wed Jun 28 08:26:19 UTC 2006 > > date command use UTC time zone and not Europe/Paris. > > How can I fix tha

Why date command don't use my time zone ?

2006-06-28 Thread KLEIN Stéphane
Hello, I used tzconfig to set my time zone on Europe/Paris. I've logout/login and call date command : date Wed Jun 28 08:26:19 UTC 2006 date command use UTC time zone and not Europe/Paris. How can I fix that ? Thanks for your help --Stéphane -- To UNSUBSCRIBE, email to [EMAIL PROT

Re: date

2006-06-05 Thread Carl Fink
On Mon, Jun 05, 2006 at 02:51:13PM +0200, Francesco Pietra wrote: [snip] > $date > reports correctly Mon Jun 5 and UTC time, however followed by CEST 2006 > > CEST = Central European Summer Time is misleading, anyway it does not > correspond to the time set and indicated. Real

date

2006-06-05 Thread Francesco Pietra
I set the date #MMDDhhmm2006 followed by #hwclock --systohc --utc inquiry $date reports correctly Mon Jun 5 and UTC time, however followed by CEST 2006 CEST = Central European Summer Time is misleading, anyway it does not correspond to the time set and indicated. Really I would like to have

Re: photo management and camera download by date

2006-05-24 Thread Bruno Buys
jmt wrote: On Tuesday 23 May 2006 04:09, Richard Otte wrote: Hi, I would like to download photos off of my digital camera in such a way that they are sorted into directories by date. So a photo taken on Feb 23,2006 would be put in a directory 2006/02/23/filename. The camera will often

Re: photo management and camera download by date

2006-05-24 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 J.A. de Vries wrote: > On 2006-05-22 @ 19:09:53 (week 21) Richard Otte wrote: [snip] > > What I do is first copy the images to my system. Then I use a program > called exiv2 to automatically rename the files using the timestamp as > stored in their EX

Re: photo management and camera download by date

2006-05-24 Thread jmt
On Tuesday 23 May 2006 04:09, Richard Otte wrote: > Hi, > > I would like to download photos off of my digital camera in such a way > that they are sorted into directories by date. So a photo taken on > Feb 23,2006 would be put in a directory 2006/02/23/filename. The > came

Re: photo management and camera download by date

2006-05-24 Thread Pete Hicks
On Mon, May 22, 2006 at 07:09:53PM -0700, Richard Otte wrote: >Hi, > >I would like to download photos off of my digital camera in such a way >that they are sorted into directories by date. So a photo taken on >Feb 23,2006 would be put in a directory 2006/02/23/filename. The >

Re: photo management and camera download by date

2006-05-24 Thread Richard Otte
amera in such a way > >> that they are sorted into directories by date. So a photo taken on > >> Feb 23,2006 would be put in a directory 2006/02/23/filename. The > >> camera will often have photos taken on different dates, and I'd like > >> the directories

Re: photo management and camera download by date

2006-05-24 Thread J.A. de Vries
On 2006-05-22 @ 19:09:53 (week 21) Richard Otte wrote: > Hi, > > I would like to download photos off of my digital camera in such a way > that they are sorted into directories by date. So a photo taken on > Feb 23,2006 would be put in a directory 2006/02/23/filename. The >

Re: photo management and camera download by date

2006-05-23 Thread Mark Maas
Richard Otte wrote: > Any suggestions are appreciated. Thanks, I'd suggest trying out f-spot. The newest one downloads into folders according to date, and the layout shows them all, but sorted by date. -- Mark Maas-martin(OpenPGP: 0xA8F5C970) [EMAIL PROTECT

Re: photo management and camera download by date

2006-05-23 Thread Ron Johnson
n I sort a bunch of files into directories by date'. > > You will need a command that will convert a file to a directory name > based on the files datastamp and the directory nameing scheme you want > to use - you may need to write that depending on how you want the > director

Re: photo management and camera download by date

2006-05-23 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 jmt wrote: > On Tuesday 23 May 2006 04:09, Richard Otte wrote: >> Hi, >> >> I would like to download photos off of my digital camera in such a way >> that they are sorted into directories by date. So a photo taken on >&

Re: photo management and camera download by date

2006-05-23 Thread Digby Tarvin
On Tue, May 23, 2006 at 11:19:01AM +0200, jmt wrote: > On Tuesday 23 May 2006 04:09, Richard Otte wrote: > > Hi, > > > > I would like to download photos off of my digital camera in such a way > > that they are sorted into directories by date. So a photo taken on > &

Re: photo management and camera download by date

2006-05-23 Thread jmt
On Tuesday 23 May 2006 04:09, Richard Otte wrote: > Hi, > > I would like to download photos off of my digital camera in such a way > that they are sorted into directories by date. So a photo taken on > Feb 23,2006 would be put in a directory 2006/02/23/filename. The > came

Re: photo management and camera download by date SOLVED

2006-05-23 Thread Ric Otte
Hi, Further reading of the manual shows digikam can do this automatically; So far it seems to be working. Ric -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

photo management and camera download by date

2006-05-23 Thread Richard Otte
Hi, I would like to download photos off of my digital camera in such a way that they are sorted into directories by date. So a photo taken on Feb 23,2006 would be put in a directory 2006/02/23/filename. The camera will often have photos taken on different dates, and I'd like the directori

Re: script with date operation??

2006-05-22 Thread Michelle Konzack
all the work > for you; be lazy. ??? -- 'date' handel timezones very well. The best is to add "--utc" to all 'date' calls. Greetings Michelle Konzack -- Linux-User #280138 with the Linux Counter, http://counter.li.org/ # Debian GNU/Linux

Re: script with date operation??

2006-05-14 Thread Bruno Buys
Perl's done all the work for you; be lazy. What do leap years have to do with it? Leap *seconds*, maybe, but I'm willing to be off on the count of days by a few seconds. If timezones are a real problem, you can always specify the timezone after the year. date has done all the work for

Re: script with date operation??

2006-05-13 Thread Michael Marsh
work for you; be lazy. What do leap years have to do with it? Leap *seconds*, maybe, but I'm willing to be off on the count of days by a few seconds. If timezones are a real problem, you can always specify the timezone after the year. date has done all the work for you. --

Re: script with date operation??

2006-05-13 Thread Stephen R Laniel
On Sat, May 13, 2006 at 02:18:10PM -0400, Michael Marsh wrote: > Since you're doing this in a script, it presumably doesn't need to be > done in a single line. I'd start with > date -d "Feb 2, 2006" +"%s" > to get the number of seconds since the ep

Re: script with date operation??

2006-05-13 Thread Michael Marsh
On 5/13/06, Bruno Buys <[EMAIL PROTECTED]> wrote: I am working on a script that needs to compute days. It needs to know how many days have gone since some given date. for example, if I run it today, it will need to know how many days have passed since, say, Feb, 02, 2006. And a

Re: script with date operation??

2006-05-13 Thread Stephen R Laniel
ipt a while back that computed "one week before today"; DateManip's way of writing that is quite literate and quite easy to code: LASTINTERVAL=`perl -e "use Date::Manip; print UnixDate(DateCalc(\"now\",\"-1 week\"), \"%d/%b/%Y\")"` In general,

script with date operation??

2006-05-13 Thread Bruno Buys
Hi I am working on a script that needs to compute days. It needs to know how many days have gone since some given date. for example, if I run it today, it will need to know how many days have passed since, say, Feb, 02, 2006. And add the corresponding number to a variable. I am looking at the

Re: Date problem

2006-04-27 Thread Torquil Macdonald Sørensen
it didn't affect the time or the timezone reported by 'date'. TMS

Re: Date problem

2006-04-27 Thread Matthias Julius
Torquil Macdonald Sørensen <[EMAIL PROTECTED]> writes: > TZ=CEST didn't have any effect, and /etc/timezone contains a > line "Europe/Oslo" which is correct. Did you export it? > > I have found the problem now by comparing the strace output from the date >

Re: Date problem

2006-04-27 Thread Torquil Macdonald Sørensen
nd the problem now by comparing the strace output from the date command running as root and as tmac. The problem was that only root had read access to the file /etc/localtime. After enabling read access for others it now works correctly also for 'tmac'. I am not exactly sure, but the problem m

Re: Date problem

2006-04-27 Thread John Hasler
TMS writes: > It reports UTC when run as 'tmac', and CEST when run as 'root': What does 'echo $TZ' report when run as 'tmac' and when run as 'root'? -- John Hasler -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Date problem

2006-04-27 Thread Matthias Julius
Torquil Macdonald Sørensen <[EMAIL PROTECTED]> writes: > It reports UTC when run as 'tmac', and CEST when run as 'root': > > As root: > tmac:/home/tmac# date > Thu Apr 27 19:50:37 CEST 2006 > > As tmac: > [EMAIL PROTECTED] ~$ date > Thu Apr

Re: Date problem

2006-04-27 Thread Torquil Macdonald Sørensen
ile or so? > > > > No, I have the following environment variables set: > > > > [...] > > What timezone does 'date' report? Is it the right one? > > Matthias It reports UTC when run as 'tmac', and CEST when run as 'root': As root: tm

Re: Date problem

2006-04-27 Thread Matthias Julius
et: > > [...] What timezone does 'date' report? Is it the right one? Matthias

Re: Date problem

2006-04-27 Thread Torquil Macdonald Sørensen
On Thursday 27 April 2006 13:49, Matthias Julius wrote: > Torquil Macdonald Sørensen <[EMAIL PROTECTED]> writes: > > I have some problems with the 'date' command: > > > > 'hwclock --show' outputs 08:00 > > 'date' (as user root) output

Re: Date problem

2006-04-27 Thread Matthias Julius
Torquil Macdonald Sørensen <[EMAIL PROTECTED]> writes: > I have some problems with the 'date' command: > > 'hwclock --show' outputs 08:00 > 'date' (as user root) outputs 08:00 > 'date' (as user tmac) outputs 06:00 > > and the KDE

Date problem

2006-04-27 Thread Torquil Macdonald Sørensen
Hello, I have some problems with the 'date' command: 'hwclock --show' outputs 08:00 'date' (as user root) outputs 08:00 'date' (as user tmac) outputs 06:00 and the KDE clock (running as user tmac) outputs 08:00 What is responsible for the incorrect out

Re: Install/uninstall log, ordered by date?

2006-03-27 Thread Joey Hess
Robert Glueck wrote: > Does Debian keep a log somewhere of which > packages/applications were installed and/or uninstalled > when, i.e. in chronological order? Or is there some other > way by which I can get that info? /var/log/dpkg.log (dpkg 1.13.5 or above) -- see shy jo signature.asc Descri

Re: Install/uninstall log, ordered by date?

2006-03-27 Thread Roberto C. Sanchez
Robert Glueck wrote: > Does Debian keep a log somewhere of which > packages/applications were installed and/or uninstalled > when, i.e. in chronological order? Or is there some other > way by which I can get that info? > > Robert > > If you use aptitude, everything is logged in /var/log/aptitud

Install/uninstall log, ordered by date?

2006-03-27 Thread Robert Glueck
Does Debian keep a log somewhere of which packages/applications were installed and/or uninstalled when, i.e. in chronological order? Or is there some other way by which I can get that info? Robert -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [

Re: Date of the mail (was: UMTS modem or router?)

2006-02-02 Thread Michelle Konzack
Am 2006-01-30 18:45:26, schrieb Simo Kauppi: > On Thu, Jan 26, 2006 at 05:35:40PM +0100, Michelle Konzack wrote: > ^^ > Is the mail getting really slow? > > I see your messages on Jan 30, even though they seem to have been sent > on 26. Currently I am Mobil in the world and the mail w

Date of the mail (was: UMTS modem or router?)

2006-01-30 Thread Simo Kauppi
On Thu, Jan 26, 2006 at 05:35:40PM +0100, Michelle Konzack wrote: ^^ Is the mail getting really slow? I see your messages on Jan 30, even though they seem to have been sent on 26. > Greetings > Michelle Konzack > Systemadministrator > Tamay Dogan Network > Debian GNU/L

Re: date --set

2005-10-23 Thread Meni Shapiro
On 10/23/05, Simo Kauppi <[EMAIL PROTECTED]> wrote: On Sun, Oct 23, 2005 at 12:55:20PM +0200, Joachim Fahnenmüller wrote:> Hi everybody,>> I want to set the date using date --set .> The man page says --set=STRING but does not tell the format. > What must STRING be if I want

Re: date --set

2005-10-23 Thread Simo Kauppi
On Sun, Oct 23, 2005 at 12:55:20PM +0200, Joachim Fahnenmüller wrote: > Hi everybody, > > I want to set the date using date --set . > The man page says --set=STRING but does not tell the format. > What must STRING be if I want e. g. Oct 23 2005, 12:54 h? > > THX > -- >

date --set

2005-10-23 Thread Joachim Fahnenmüller
Hi everybody, I want to set the date using date --set . The man page says --set=STRING but does not tell the format. What must STRING be if I want e. g. Oct 23 2005, 12:54 h? THX -- Joachim Fahnenmüller -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe"

Re: Up to date Debian package

2005-07-09 Thread Hans du Plooy
On Sat, 2005-07-09 at 08:42 +0200, Thomas Weinbrenner wrote: > There is a new version in experimental. > http://packages.debian.org/experimental/mail/amavisd-new Thanks! Dunno how I missed that. Like I said in my other mail - asleep at the wheel Thanks again -- Kind regards Hans du Plooy

Re: Up to date Debian package

2005-07-08 Thread Thomas Weinbrenner
Hans du Plooy wrote: > Anybody know where I can get up to date amavisd-new packages for Debian > (running Etch)? The packages referred to on the amavisd-new site are > the same ons that ship with Etch/Sid, which are old (2003 vintage). > Any links or pointers on how to build

Up to date amavisd-new package

2005-07-08 Thread Hans du Plooy
Sorry, just corrected the subject - asleep at the weel :-) Hi guys, Anybody know where I can get up to date amavisd-new packages for Debian (running Etch)? The packages referred to on the amavisd-new site are the same ons that ship with Etch/Sid, which are old (2003 vintage). Any links or

Up to date Debian package

2005-07-08 Thread Hans du Plooy
Hi guys, Anybody know where I can get up to date amavisd-new packages for Debian (running Etch)? The packages referred to on the amavisd-new site are the same ons that ship with Etch/Sid, which are old (2003 vintage). Any links or pointers on how to build a debianized amavisd-new package would

Re: Sarge release date [Was: Installing D-Link DGE-530T Gigabit NIC on an Woody 3.0r5 after Install.]

2005-06-13 Thread Colin Ingram
Siju George wrote: I have downloaded sarge today and am going to install it so I'll let you know the details soon. I happened to see something strange though! You should probably start a new thread with your new topic. You have a better chance of getting a response from people other than

RE: Bug in command date?

2005-05-04 Thread richard . mouli
Title: RE: Bug in command date? Thanks for you reply. Looks like a beginner error: not ready the (right) doc :-)     Richard PS: I will soon start a new thread with what seems to me a much more complex problem, if you could answer as fast as you did ... :-) > -Original Mess

Re: Bug in command date?

2005-05-04 Thread Maurits van Rees
le. If that's not possible it helps to get a better email program. ;) I'll put that header in now and see if that helps. Putting yourself in a Cc: field may help as well. > I recently wrote scripts that relies on relative dates (they do "intensive" > date manipulations). I e

Bug in command date?

2005-05-04 Thread richard . mouli
Title: Bug in command date? Hello, That my first post in this mailing list. Please note I am not subscribed and I would like to get your replies sent back to me, thanks. I recently wrote scripts that relies on relative dates (they do "intensive" date manipulations). I encou

Re: Debian package containing perl Date/Parse.pm

2004-12-29 Thread Jacob S
On Wed, 29 Dec 2004 19:18:02 +0100 [EMAIL PROTECTED] (Otto Wyss) wrote: > William Ballard <[EMAIL PROTECTED]> wrote: > > > On Wed, Dec 29, 2004 at 05:18:34PM +0100, Otto Wyss wrote: > > > Does anyone know in which Debian package the perl module > > > Dat

Re: Debian package containing perl Date/Parse.pm

2004-12-29 Thread William Ballard
On Wed, Dec 29, 2004 at 07:18:02PM +0100, Otto Wyss wrote: > Sorry I don't use apt and "dpkg -S Parse.pm", which probably is the same > as "apt-file search Parse.pm" doesn't find anything. dpkg -S only searches already installed packages. apt-file does the same thing but includes not-installed pac

Re: Debian package containing perl Date/Parse.pm

2004-12-29 Thread Otto Wyss
Jacob S <[EMAIL PROTECTED]> wrote: > > Does anyone know in which Debian package the perl module Date::Parse > > is hidden? > > According to packages.debian.org, it's in the package libtimedate-perl. > Thanks a lot. It didn't occurred to me to look at packa

Re: Debian package containing perl Date/Parse.pm

2004-12-29 Thread Otto Wyss
William Ballard <[EMAIL PROTECTED]> wrote: > On Wed, Dec 29, 2004 at 05:18:34PM +0100, Otto Wyss wrote: > > Does anyone know in which Debian package the perl module Date::Parse is > > hidden? > > apt-get install apt-file > apt-file update > apt-file search Pa

Re: Debian package containing perl Date/Parse.pm

2004-12-29 Thread Jacob S
On Wed, 29 Dec 2004 17:18:34 +0100 [EMAIL PROTECTED] (Otto Wyss) wrote: > Does anyone know in which Debian package the perl module Date::Parse > is hidden? According to packages.debian.org, it's in the package libtimedate-perl. HTH, Jacob -- To UNSUBSCRIBE, email to [EMAIL PROTECT

<    4   5   6   7   8   9   10   11   12   13   >