notes/Oneliner for converting all files to lowercase-67xBn3LT.sh
#!/bin/bash

for i in *; do mv "$i" "${i,,}" ; done

syntax highlighted by Code2HTML, v. 0.9.1