bug#6924: hi there is misstake in rm --help option

2010-08-27 Thread Artur Kulikowski
Bug is here:

 

To remove a file whose name starts with a `-', for example `-foo',

use one of these commands:

  rm -- -foo

 

  rm ./-foo

 

the * marki s forgotten shouldn't it be : 

rm -- -foo* 

rm ./-foo*

??

Without * it didn't work for me

 

 

Artur Kulikowski

 



hi

2007-10-21 Thread wisdom helegbe
GENERAL INSTALLATION  1. Unpack  2. Run the configure script   From within the 
temporary directory you just created, run the configure script. You'll want 
to read this entire section, and decide on the option switches which you will 
want to specify to configure, before you actually run it. Having multiple 
console windows available during (this or any other) install is exceptionally 
helpful. 
To see a list of configuration options, use the help flag, which will 
show you a list of options:  
 
./configure --help

it gives me a error message below:

[EMAIL PROTECTED] ~]# ./configure --help
-bash: ./configure: No such file or directory


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


Re: hi

2007-10-21 Thread Bob Proulx
wisdom helegbe wrote:
 Subject: hi

A more descriptive subject line would help to direct your message better.

 GENERAL INSTALLATION 1. Unpack 2. Run the configure script From
 within the temporary directory you just created, run the configure
 script. You'll want to read this entire section, and decide on the
 option switches which you will want to specify to configure, before
 you actually run it. Having multiple console windows available
 during (this or any other) install is exceptionally helpful.

Those instructions seem reasonable but very generic.  But I do not see
them with coreutils.  In coreutils please refer to the README-hacking
file for more detailed instructions.  See this message for more
information.

  http://lists.gnu.org/archive/html/bug-coreutils/2007-10/msg00109.html

Are you trying to build GNU coreutils?  You have not really said what
it is that you are doing.  It is hard to guess correctly with such
little information available.

 To see a list of configuration options, use the help flag,
 which will show you a list of options:
  
 ./configure --help
 
 it gives me a error message below:
 
 [EMAIL PROTECTED] ~]# ./configure --help
 -bash: ./configure: No such file or directory

If you unpacked a distribution or snapshot, which is recommended as an
easier way for builders to build, then configure will be there.  If
you are building a copy from the latest development sources from git
version control then follow the instructions in the README-hacking
file.

If you are trying to build GNU coreutils then I recommend that you use
the latest stable release.  It is the most self-contained and easiest
to build.

  ftp://ftp.gnu.org/gnu/coreutils/coreutils-6.9.tar.gz
  ftp://ftp.gnu.org/gnu/coreutils/coreutils-6.9.tar.gz.sig

I observe that you are trying to build as root.  That is not
recommended.  It is better to compile as a non-root user.

Bob


___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


Re: hi

2007-10-21 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

wisdom helegbe wrote:
 [EMAIL PROTECTED] ~]# ./configure --help
 -bash: ./configure: No such file or directory

According to the prompt you show, it looks like you're trying to run
./configure from within your home directory, rather than from the source
directory into which you unpacked coreutils.

- --
Micah J. Cowan
Programmer, musician, typesetting enthusiast, gamer...
http://micah.cowan.name/

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHGwnR7M8hyUobTrERCBzbAJ9YS9sDpsc0XbGQBkkwvWBLNE5JNACggdY1
UD6sFqC89x1iz7KdWaYjTdw=
=XYuU
-END PGP SIGNATURE-


___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


Re: Hi

2007-02-22 Thread James Youngman

On 1/31/07, V.Nadeem Ahmad [EMAIL PROTECTED] wrote:

Hi,
I would like to kow how can i sort a colomn in a file without changing other
colomn. when I sort i dont want to move my other colomns.


There are lots of ways to do it, but none using just one single tool.
Basically you will need to write some sort of script.  For example,
split the columns into separate files using cut or awk, sort the
columns you need with sort, and then rejoin the columns with paste.
If it's just a one-off you could also use Gnumeric, or OpenOffice,
or...

James.


___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


Sort usage [Was: Hi]

2007-01-31 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Choose a more descriptive subject line - my spam-eater nearly skipped over
your message.

According to V.Nadeem Ahmad on 1/30/2007 10:54 PM:
 Hi,
 I would like to kow how can i sort a colomn in a file without changing
 other
 colomn. when I sort i dont want to move my other colomns.

'sort -k2,2' will sort over just the contents of the second column, with
ties broken by the overall line.  'info sort' will give you a better idea
of all the flags that make sort so powerful.

If, on the other hand, you want to extract a column, sort just that, then
reinsert it back into the same location, you should look into cut and
join, alongside sort.

- --
Don't work too hard, make some time for fun as well!

Eric Blake [EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFwJkr84KuGfSFAYARArPPAJ9wTXDu/xXMZaJrOfdulLowO9xBLgCgtJJt
99U/YSBdnWBLUW6thfzkpZg=
=Ka/a
-END PGP SIGNATURE-


___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


Hi

2007-01-30 Thread V.Nadeem Ahmad

Hi,
I would like to kow how can i sort a colomn in a file without changing other
colomn. when I sort i dont want to move my other colomns.
Nadeem
___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


hi, ive a new mail address

2005-11-23 Thread esr
hey its me, my old address dont work at time. i dont know why?!
in the last days ive got some mails. i' think thaz your mails but im not sure!

plz read and check ...
cyaaa___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


Hi ..

2005-09-01 Thread Satpathy, Ajay \(Corporate, consultant\)
Hi,
We use nohup command in Linux environment to start a process in back ground. 
This process must run continuously until the process is killed. We notice that 
the process is running fine for some time and then stops automatically on its 
own. We have no clue how the process is stopped.

Is there any way to know why the process gets stopped on its own, is there any 
Linux log will say that ? This process is running fine in Unix environment.

I use following command to start the process:
$ nohup ${CHECKIN_TOP}/scripts/mars_checkin_daemon.sh  enter

I check if the process is running, I see it is running.
$ ps -ef|grep mars_check enter
marsdev   4572 1  3 Aug30 pts/001:40:32 /bin/ksh /d002/u17/app01/mard/ma
rsdev/scripts/mars_checkin_daemon.sh
marsdev   1417  4392  0 10:13 pts/000:00:00 grep mars_check

After say few hours when I check if the process is running, I see it is not 
running.
$ ps -ef|grep mars_check enter
marsdev   1417  4392  0 10:13 pts/000:00:00 grep mars_check

Thanks,
Ajay


___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


unix daemon (was: Hi ..)

2005-09-01 Thread Bob Proulx
Satpathy, Ajay (Corporate,  consultant) wrote:
 We use nohup command in Linux environment to start a process in back 
 ground. This process must run continuously until the process is killed. We 
 notice that the process is running fine for some time and then stops 
 automatically on its own. We have no clue how the process is stopped.

We don't have a clue as to why your program is exiting either.

 Is there any way to know why the process gets stopped on its own, is there 
 any Linux log will say that ? This process is running fine in Unix 
 environment.

You will have to debug it.  There is no way for us to know what is in
your script.

There are many differences between systems.  Writing portable scripts
can be a challenge at times.  If this behaves differently between two
different systems then it is obviously sensitive in some way to the
underlying system differences.

 I use following command to start the process:
 $ nohup ${CHECKIN_TOP}/scripts/mars_checkin_daemon.sh  enter
 
 I check if the process is running, I see it is running.
 $ ps -ef|grep mars_check enter
 marsdev   4572 1  3 Aug30 pts/001:40:32 /bin/ksh 
 /d002/u17/app01/mard/marsdev/scripts/mars_checkin_daemon.sh

Unfortunately as you can see it is still associated with a tty
device.  In this case pts/0.  Before job control a unix task could be
placed in the background with nohup as you show and that would be
fine.  But on job control systems this is no longer sufficient.  On
job control systems the process is still attached to the tty.  You
should disassociate from the controlling terminal.  The Perl Cookbook
if I recall correctly has an example of doing this.  But I don't have
a copy handy to look.

 After say few hours when I check if the process is running, I see it is not 
 running.
 $ ps -ef|grep mars_check enter
 marsdev   1417  4392  0 10:13 pts/000:00:00 grep mars_check

The process has apparently exited.  You will have to debug it.
There is nothing we can do here to help you with this.

Bob


___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


Hi

2005-04-11 Thread Malotu Venkanna
Hi sir, 
   this is venki,i am not able to creating a new file please help me 
regarding this.and 
about unix prompt. 
 
thankig you 
regards  
venki 


___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils


Re: Hi

2005-04-11 Thread James Youngman
On Mon, Apr 11, 2005 at 11:04:54AM +0800, Malotu Venkanna wrote:
 Hi sir, 
this is venki,i am not able to creating a new file please help me 
 regarding this.and 
 about unix prompt. 

Please see 
http://www.google.com/search?q=Unix+getting+startedmeta=btnG=Google+Search

Regards,
James.


___
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils