Skip to content
Snippets Groups Projects
create_default_pages.sh 144 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/bash
    
    for f in $(find public -name en.html); do
    	newfile=${f/en.html/index.html}
    	if [ ! -f "$newfile" ]; then
    		mv $f $newfile
    	fi
    done