prefixing filenames

Hi,:cool:
I have a list of files in a directory.I need to store them in a file with the prefix of @ by using a command..
ex:@p_po.plb
@p_ebiz_roster_data.plb

any idea pls.
cheers
RRK

For instance, from the directory you talk about:

for f in *; do echo "@$f"; done >> /tmp/list.txt

Regards.

hi grial,:cool:
Thanks a lot.
It worked fine.
cheers
RRK