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
Also in C++:
- clear ram cache linux
- download chrome on ubuntu 20.04 unsupported file
- crear usuario linux comandos
- linux view kernel version
- how to install django on windows
- install material icons
- linux find and delete files with name
- scrapy spider shell from spider
- linux set date timezone
- delete branches in bulk git
- windows powershell symlink
- script to kill a process in windows
- squash commit history git
- where is fish shell installed ubuntu
- deletes lines including regex match
- pip install tkinter
- how to copy the files of a folder to another folder linux
- how to activate administrator account in windows 10 command prompt
- git reset fork
- using tail command in linux
- set zsh as default shell
- how to install dependencies from package.json
- why my github user not showing photo in commit
- check value is number in cmd