Para crear el script para enviar archivos:
gedit send_files
Luego copiamos este codigo.
#!/bin/bashecho ""DESTINO=""echo -n "Ingrese Destino(ej. fal@fal.com): "read DESTINOASUNTO=""echo -n "Ingrese asunto: "read ASUNTORUTA=""echo -n "Ingrese Ruta del Archivo(ej. /home/fal/): "read RUTAARCHIVO=""echo -n "Ingrese Nombre del arvhivo(ej. file.txt): "read ARCHIVOecho ""echo "enviando..."uuencode ${RUTA}${ARCHIVO} ${ARCHIVO} | mailx -s "${ASUNTO}" ${DESTINO}echo ""
Si tienes conocimientos en programacion shell, puedes hacer modificaciones a tu antojo.
Luego dar permisos de ejecucion
sudo chmod +x send_filesPara ejecutar solo basta con digitar ./send_files
0 comentarios:
Publicar un comentario