Horje
convert all files to lowercase using shell script Code Example
convert all files to lowercase using shell script
#!/bin/sh

for x in `ls`
  do
  if [ ! -f $x ]; then
    continue
    fi
  lc=`echo $x  | tr '[A-Z]' '[a-z]'`
  if [ $lc != $x ]; then
    mv -i $x $lc
  fi
  done




Shell

Related
downgrade npm package to specific version Code Example downgrade npm package to specific version Code Example
git add commit push one command Code Example git add commit push one command Code Example
remove/undo all modified files git Code Example remove/undo all modified files git Code Example
linux search for line in file Code Example linux search for line in file Code Example
how to convert ts to mp4 with ffmpeg Code Example how to convert ts to mp4 with ffmpeg Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9