Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- LOGS=/tmp/informe.log
- # '>' deriva hacia un fichero sobre escribiendo lineas previas
- # '>>' deriva hacia un fichero agregando nuevas lineas
- # echo "Usuario: $USER" > salida.txt
- # echo "Interprete: $SHELL" >> salida.txt
- # echo "Directorio de usaurio: $HOME" >> salida.txt
- # El programa 'tee' permite imprimir en terminal y ademas deribar a un archivo
- # El pipe '|' redirige la salida de un comando 'STOUT' como parametro de entrada 'STDIN'
- # la opcion '-a' (append) del comando 'tee' añade lineas a un fichero.
- echo "Usuario: $USER" | tee salida.txt
- echo "Interprete: $SHELL" | tee -a salida.txt
- echo "Directorio de usaurio: $HOME" | tee -a salida.txt
- echo "Listando directorio de usuario..."
- ls $HOME
- echo "Listando directorio raiz..."
- ls /
- echo "Listando directorio tmp del usuario..."
- ls $HOME/tmp 2>> $LOGS | tee -a salida.txt #este directorio no existe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement