Ask a Question related to FreeBSD, Design and Development.
-
P. B. S. #1
time -l date ==> bash: -l: command not found Bug?
"time" doesn't seem to accept any options. The first thing on the line after "time" is taken as the utility to execute. I need the -l option.
Am I misusing "time" or what?
P. B. S. Guest
-
problem using bash variables with command-line perl in bash script
Hi! I have a problem with variables when using command-line perl in a bash script. The script should update a date (in 2003-10-10 form) if the... -
cron bash date
Hello, I am trying to run a bash script in cron. I originally wanted it to run at 11:59pm on the last day of every month. February will always... -
/bin/bash: cvs: command not found
I'm trying to do a cvs checkout from a remote machine running SSH Version 1.2.25 , protocol version 1.5. Say the user is "foo", and they have... -
bash: get file modification time query
* David selby (debian@pusspaws.net) : stat -c "%y" $filename good times, Vineet -- http://www.doorstop.net/ -- #include<stdio.h> -
bash: display running foreground command in xterm title
How can I get bash to display the currently running command (at least the foreground process) in the titlebar of an xterm? All I'm finding on Google... -
Kris Kennaway #2
Re: time -l date ==> bash: -l: command not found Bug?
On Fri, Feb 25, 2005 at 04:00:49AM +0200, P. B. S. wrote:
Your shell (apparently bash) provides a builtin time function. If> "time" doesn't seem to accept any options. The first thing on the line after "time" is taken as the utility to execute. I need the -l option.
> Am I misusing "time" or what?
> _______________________________________________
you want to use FreeBSD's time(1) binary, call it by absolute path
(/usr/bin/time)
Kris
Kris Kennaway Guest
-
Parv #3
Re: time -l date ==> bash: -l: command not found Bug?
in message <20050225020659.GA75395@xor.obsecurity.org>,
wrote Kris Kennaway thusly...PBS, Do wrap lines around 69 or so characters to give me no>
> On Fri, Feb 25, 2005 at 04:00:49AM +0200, P. B. S. wrote:
incentive to ignore your mail otherwise.
Look also in bash(1) man page which states somewhere to use '\' in>> > "time" doesn't seem to accept any options. The first thing on
> > the line after "time" is taken as the utility to execute. I need
> > the -l option. Am I misusing "time" or what?
> Your shell (apparently bash) provides a builtin time function. If
> you want to use FreeBSD's time(1) binary, call it by absolute path
> (/usr/bin/time)
order to use the real command (as it appears in $PATH of course) and
avoid built-in/alias.
- Parv
--
Parv Guest



Reply With Quote

