dotfiles

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

namefmt (122B)


      1 #!/bin/sh
      2 
      3 # FIXME: give path/s from command line
      4 for file in $(find .); do
      5 	mv ${file} $(echo ${file} | tr '-' '_')
      6 done