dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.margiolis.net/dotfiles.git
Log | Files | Refs | README | LICENSE

dash2undscr (83B)


      1 #!/bin/sh
      2 
      3 for file in $(find .); do
      4 	mv ${file} $(echo ${file} | tr '-' '_')
      5 done