edit SideBar
Append a pattern to a filename. For example, given a set of files without an extensions, rename them so that they all have an .ext extension. The following does the trick:
for file in *; do mv $file `echo $file.ext`; done