Añadidos scripts nuevos

This commit is contained in:
Moribundo 2021-02-08 14:02:08 +01:00
parent a668057183
commit 2f16d78e9b
4 changed files with 41 additions and 0 deletions

7
XFE/aes-c Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
for arg
do
aescrypt-gui "$arg"
done

19
acentos.sh Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
# Quitar acentos
# Por Moribundo Insurgente
clear
echo "Renombrando archivos..."
echo
sleep 2
rename á a *
rename é e *
rename í i *
rename ó o *
rename ú u *
rename Á A *
rename É E *
rename Í I *
rename Ó O *
rename Ú U *
exit

6
guiones.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# Cambiar espacios y puntos por guiones
# Por Moribundo Insurgente
read -p "Introduce extension de archivo: " ext
for FILE in *.$ext ; do NUEVOFICHERO=`echo $FILE | sed 's/ /_/g'`; mv "$FILE" $NUEVOFICHERO; done

9
pdf2djvu-masivo.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
# Conversor pdf a djvu
for file in *.pdf; do
pdf2djvu -d 500 -o "$file.djvu" "$file"
rename .pdf.djvu .djvu *.pdf.djvu
done