Horje
how to rename many files at once linux Code Example
how to rename many files at once linux
> ls | while read fname
> do
> echo mv $fname ${fname/.log/.LOG/}
> done
linux rename multiple files
$ for i in $( ls ); do mv $i $i.old; done




Shell

Related
crontab do action inside folder Code Example crontab do action inside folder Code Example
export editor nano Code Example export editor nano Code Example
how to make python + docx exe Code Example how to make python + docx exe Code Example
access nodeport service from another machine in the same network Code Example access nodeport service from another machine in the same network Code Example
wsl sync clock time Code Example wsl sync clock time Code Example

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