talimat-adlandırma-betiği

This commit is contained in:
yasarciv 2017-07-08 13:20:32 +03:00
parent 48b2636e7a
commit d4e5b4ad30
1 changed files with 11 additions and 0 deletions

11
bin/adlandir.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
for file in $(find ./* -name 'Pkgfile')
do
mv $file $(echo "$file" | sed -r 's|Pkgfile|talimat|g')
done
for file in $(find ./* -name '*.post-install')
do
mv $file $(echo "$file" | sed -r 's|.post-install|.kur-kos|g')
done
echo "isimler değiştirildi"