No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Suppression de fichiers

Description du code

Script de nettoyage de tous les fichiers. Compilateur LSD010

Code source ou contenu du fichier

  1. #!/bin/bash
  2. # debug: -x
  3. echo ""
  4. echo "$USERNAME($UID) on $HOSTNAME [running $OSTYPE]"
  5. echo -e "\033[33;40m"
  6. finalName='lsd10'
  7. echo "Clean all $finalName compiled code and executable"
  8. cd source/
  9. echo "Removing possible previous compiled files ..."
  10. rm lex.yy.c y.tab.c y.tab.h y.output 2>/dev/null
  11. rm *.o *~ 2>/dev/null
  12. echo "Cleaning executable file ..."
  13. rm $finalName 2>/dev/null
  14. rm compiler 2>/dev/null
  15. echo -e "\033[32;40mDone\033[00m"
  16. echo ""
  17. echo ""
  18. echo ""

Autres extraits de codes en bash

English translation

You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.

If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.

Thank you in advance.

Document created the 05/10/2009, last modified the 28/10/2018
Source of the printed document:https://www.gaudry.be/en/sniplet-rf-lsd010/project/clean-all.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.