--- Nikhil Joshi <[EMAIL PROTECTED]> wrote: > How can I make an alias say del which when used will move > file(s)/folder(s) to $HOME/.trash ?
Well, you can write a script as simple as this: #!/bin/sh mv $1 $HOME/.trash Or you can go for something better. I don't know if you can simply use the alias command. Manish ________________________________________________________________________ For live cricket scores download Yahoo! Score Tracker at: http://in.sports.yahoo.com/cricket/tracker.html _______________________________________________ http://mm.ilug-bom.org.in/mailman/listinfo/linuxers

