Skip to content

Instantly share code, notes, and snippets.

@MaheshReddy
Created July 2, 2012 18:52
Show Gist options
  • Save MaheshReddy/3034884 to your computer and use it in GitHub Desktop.
Save MaheshReddy/3034884 to your computer and use it in GitHub Desktop.
Rename all the . files in directory by removing the .
for i in `ls -a` ; do mv $i ./`echo $i | sed 's/\.//g'`;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment