Friday, September 04, 2009

Linux Shell Commands

Si script.sh cambia de ruta y queremos q cambie a esa ruta, habra q anteponer el comando source

#source ./script.sh

Ocultar la evidencia
#alias cmdNuevo="source ./script.sh"

O realizar lo siuiente en el script tambien ayuda
#!/your/shell
cd /home/username
pwd
exit 0


Referencias:
Linux Shell y Ejemplos http://www.freeos.com/guides/lsst/

No comments:

OS Emulation on Ubuntu 20

    sudo apt update && sudo apt install qemu-system-x86   # Create a 1GB disk image   qemu-img create -f qcow2 win95.qcow2 1G qemu-i...