Horje
convert all file names to lowercase linux 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
convert all file names to lowercase linux
# install rename
# in directory:
rename 'y/A-Z/a-z/' *




Shell

Related
generate ssl certbot nginx Code Example generate ssl certbot nginx Code Example
grep filetype Code Example grep filetype Code Example
adonis js make seeder Code Example adonis js make seeder Code Example
how to install whatsapp on manjaro linux Code Example how to install whatsapp on manjaro linux Code Example
whatsdesk Code Example whatsdesk Code Example

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