4 Commits

Author SHA1 Message Date
Gustavo Adolfo Mesa Roldán e5d2578f4e 0.4r2 2020-09-27 22:36:00 +02:00
Gustavo Adolfo Mesa Roldán 1ee7f59029 0.4rMu 2020-09-27 22:35:27 +02:00
g 8d0e54c3fc Merge pull request 'Subir archivos a ''' (#1) from m/lch:master into master
Reviewed-on: https://gitea.hatthieves.es/cloud/lch/pulls/1
2020-09-27 20:31:22 +00:00
m 0a755b208e Subir archivos a ''
no probado. uninstall añadido.
2020-09-27 20:24:28 +00:00
3 changed files with 44 additions and 4 deletions
+1 -3
View File
@@ -14,6 +14,4 @@
- Comprobar qué dependencias son necesarias para esos formatos. - Comprobar qué dependencias son necesarias para esos formatos.
- ¿Ficheros que soporta? - ¿Ficheros que soporta?
AR, ARJ, CAB, CHM, CPIO, CramFS, DMG, EXT, FAT, GPT, HFS, IHEX, ISO, LZH, LZMA, MBR, MSI, NSIS, NTFS, QCOW2, RAR, RPM, SquashFS, UDF, UEFI, VDI, VHD, VMDK, WIM, XAR and Z. AR, ARJ, CAB, CHM, CPIO, CramFS, DMG, EXT, FAT, GPT, HFS, IHEX, ISO, LZH, LZMA, MBR, MSI, NSIS, NTFS, QCOW2, RAR, RPM, SquashFS, UDF, UEFI, VDI, VHD, VMDK, WIM, XAR and Z.
# Hacer desinstalador
+1 -1
View File
@@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
VERSION=0.4r1 VERSION=0.4r2
DEST=$1 DEST=$1
shift 1 shift 1
ORIG=$@ ORIG=$@
+42
View File
@@ -0,0 +1,42 @@
#!/bin/bash
if [ "$UID" != "0" ]; then
echo " Only root can execute this script, sorry."
echo " Try 'sudo ./uninstall.sh'"
exit 0
fi
# Si existe el archivo lch
if [[ -f "/usr/bin/lch" ]]; then
rm /usr/bin/lch
fi
# Si existe el directorio lch
if [[ -d "/usr/lib/lch" ]]; then
rm -rf "/usr/lib/lch"
fi
# Si nulo manpath
if [ -z "$MANPATH" ]; then
MANPATH=$(manpath)
fi
MANDIR=${MANPATH%%:*}/man1
# Si man lch.1
if [[ -f "$MANDIR/lch.1" ]]; then
rm "$MANDIR/lch.1"
fi
# Si man lch.1.gz
if [[ -f "$MANDIR/lch.1.gz" ]]; then
rm "$MANDIR/lch.1.gz"
fi
echo "============================="
echo " lch uninstalled successfully."
echo "============================="
echo ""