This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # Este programa imprime la letra Z en posiciones aleatorias de la consola de Linux, con colores aleatorios de background y foreground. | |
| # También activa y desactiva el modo de reverso de video luego de cada 50 asignaciones aleatorias de la letra Z | |
| COLUMNS="$(tput cols)" | |
| LINES="$(tput lines)" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # This program replaces the original dd program and assumes that the actual dd program has been moved, in its same | |
| # directory, to the dd2 file. | |
| # What it does is verify that no disk with the label $ LABELDISK is written directly with dd. | |
| # If no disk labeled $ LABELDISK is connected or no attempt is made to write directly to it, the original dd2 program | |
| # is called with all the parameters, just as they were passed to it. This program is not immune to code injection. | |
| # Este programa reemplaza al programa dd original y asume que el verdadero programa dd se ha movido, en su mismo directorio, al archivo dd2. | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| MYPID=$$ | |
| isexec=$(ps -AF | grep "bash $0" | grep -v grep | grep -v $MYPID) | |
| WTITLE="⚡ Activar el ahorro de memoria ⚠" | |
| if [ -n "$isexec" ] | |
| then | |
| echo "Se esta ejecutando" |