1
0
mirror of https://github.com/termux/whatprovides synced 2024-06-19 23:47:06 +00:00
whatprovides/db/renamer
2020-11-18 09:22:37 +00:00

9 lines
102 B
Bash

#!/bin/bash
list=`ls`
for i in $list;
do
#echo $i
real=`echo $i | cut -d'.' -f1`
mv $i $real
done