Programme jwhich.java

Ce programme permet d'obtenir pour une commande donnée toutes les occurrences de chemin complet présentes dans les dossiers du PATH. A noter que sous Linux, la commande which avec l'option -a permet d'obtenir la même chose

Sous Windows, on utilise la variable d'environnement PATHEXT pour connaître la liste des suffixes des fichiers exécutables
Si le suffixe CPL est absent alors il est ajouté (exemple sysdm.cpl)

Si l'option +d est précisée, la date de dernière modification de la commande est affichée

Si l'option +s est précisée, la taille de la commande est affichée.

Ces deux options sont exclusives : une seule à la fois peut être utilisée

Dernière mise à jour sur le site le 11 novembre 2021 - Téléchargement

//######
//## jwhich.java : Affichage des noms complets pour une commande
//## ===========
//## 27.03.2018: Création  @TL@
//## 11.04.2018: Options +d pour la date
//## 19.04.2018: Options +s pour la taille en octets en alternative de +d
//## 14.01.2020: ne pas prendre dossier courant s'il est deja dans le PATH
//## 03.04.2021: Correction Get_Size
//## 07.11.2021: Ajout suffixe CPL dans PATHHEXT pour Windows
//######

import java.io.File;
import java.math.BigDecimal;
import java.text.DecimalFormatSymbols;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.Locale;
import java.util.Map;

public class 
jwhich {

  
//
  //-- <<<< UsageExit
  //
  
public static void UsageExit() {
    
System.out.println"" );
    
System.out.println" Usage: jwhich Commande [ +d | +s ]" );
    
System.exit( );
  }
  
//-- >>>> UsageExit

  //
  //-- <<<< main
  //
  
public static void mainString[] args ) {

    
String Cmde "";

    
boolean b_DATE false;
    
boolean b_SIZE false;
    
    if ( ( 
args.length == ) || ( args.length ) ) {
      
UsageExit();
    }

    
Cmde args];

    if ( 
args.length == ) {
      if ( 
args].equals"+d" ) ) {
        
b_DATE true;
      } else if ( 
args].equals"+s" ) ) {
        
b_SIZE true;
      }
    }
    
    
String PathDIR System.getenv"PATH" );

    if ( 
PathDIR == null ) {
      
System.out.println"" );
      
System.out.println" La variable PATH est vide !" );
      
System.exit( );
    }

    
String PathCmdeVarENVLIGNE;
    
String Path_Sep System.getProperty"path.separator" );

    
Map<StringStringenv System.getenv();

    
String OSNAME System.getProperties().getProperty"os.name" ).toUpperCase();
    
boolean b_WIN32 OSNAME.startsWith"WIN" );

    if ( 
b_WIN32 ) {
      
String CURRENT_DIR env.get"JAVA_PREVIOUS_DIR" );
      
      if ( 
CURRENT_DIR == null ) {
         
CURRENT_DIR System.getProperty"user.dir" );
      }
      
      
boolean b_EXIST false;
      
      for ( 
String DossierPathDIR.splitPath_Sep ) ) {
        if ( 
Dossier.equalsCURRENT_DIR ) ) {
          
b_EXIST true;
          break;
        }
      }
      
      if ( ! 
b_EXIST ) {
        
PathDIR CURRENT_DIR ";" PathDIR;
      }
    }

    
String Dirname_Sep System.getProperty"file.separator" );

    
Date   DateLastMod;
    
long   L_Size;
    
String S_Size;

    
System.out.println"" );

    for ( 
String DossierPathDIR.splitPath_Sep ) ) {

      if ( 
b_WIN32 && Dossier.contains"%" ) ) {
        for ( 
String envName env.keySet() ) {
          
VarENV "%" envName "%";
          
Dossier Dossier.replaceVarENVenv.getenvName ) );
        }
      }

      if ( 
Dossier.equals"" ) ) continue;

      
File Fd_Dossier = new FileDossier );

      if ( ! 
Fd_Dossier.isDirectory() ) continue;

      
PathCmde =  Dossier Dirname_Sep Cmde;

      
File Fd_Cmde = new FilePathCmde );

      if ( 
Fd_Cmde.isFile() ) {

        
LIGNE "";

        if ( 
b_WIN32 || Fd_Cmde.canExecute() ) {
          if ( 
b_DATE ) {
            
LIGNE " " Get_DateFd_Cmde );
          }
          if ( 
b_SIZE ) {
            
LIGNE " " Get_SizeFd_Cmde );
          }
          
LIGNE LIGNE " + " PathCmde;
        } else  {
          if ( 
b_DATE || b_SIZE ) {
            
LIGNE String.format"%17s"" " );
          }
          
LIGNE " " LIGNE " - "  PathCmde;
        }

        
System.out.printlnLIGNE );
      }
      
      if ( 
b_WIN32 ) {
        
String PathEXT System.getenv"PATHEXT" ) + ";";
        
        if ( ! 
PathEXT.contains".CPL;") ) {
          
PathEXT PathEXT ".CPL";
        }

        for ( 
String SuffixPathEXT.splitPath_Sep ) ) {

          
PathCmde =  Dossier Dirname_Sep Cmde Suffix.toLowerCase();

          
File Fd_CmdeWin = new FilePathCmde );

          
LIGNE "";

          if ( ! 
Fd_CmdeWin.isFile() ) continue;

          if ( 
b_WIN32 || Fd_CmdeWin.canExecute() ) {
            if ( 
b_DATE ) {
              
LIGNE " " Get_DateFd_CmdeWin );
            }
            if ( 
b_SIZE ) {
              
LIGNE " " Get_SizeFd_CmdeWin );
            }
            
LIGNE LIGNE " + " PathCmde;
          } else  {
            if ( 
b_DATE || b_SIZE ) {
              
LIGNE String.format"%17s"" " );
              
LIGNE LIGNE " - "  PathCmde;
            }
            
LIGNE LIGNE " - "  PathCmde
          }
          
System.out.printlnLIGNE );
        }
      }
    }
  }
  
//-- >>>> Main >>>>

  //
  //-- <<<< Get_Date
  //
  
static String Get_DateFile p_Fd ) {
    
SimpleDateFormat DatFormat = new SimpleDateFormat"yyyy_MM-dd hh:mm" );
    
Date DateLastMod = new Datep_Fd.lastModified() );
    
String S_Date DatFormat.formatDateLastMod );
    return 
S_Date;
  }
  
//-- >>>> Get_Date
  
  //
  //-- <<<< Get_Size
  //
  
static String Get_SizeFile p_Fd ) {
    
long L_Size p_Fd.length();
    
    
DecimalFormat formatter = (DecimalFormatNumberFormat.getInstanceLocale.US );
    
DecimalFormatSymbols symbols formatter.getDecimalFormatSymbols();

    
symbols.setGroupingSeparator' ' );
    
formatter.setDecimalFormatSymbols(symbols);
    
    
String S_Sizeformatter.formatL_Size );
    
    
S_Size String.format"%16s"S_Size );

    return 
S_Size;
  }
  
//-- >>>> Get_Size

  //
  //-- <<<< Get_Size_Old
  //
  
static String Get_Size_OldFile p_Fd ) {
    
long L_Size p_Fd.length();
    
DecimalFormat myFormatter = new DecimalFormat"###,###" );
    
String S_Size myFormatter.formatL_Size );
    
S_Size String.format"%16s"S_Size );
    return 
S_Size;
  }
  
//-- >>>> Get_Size_Old
}

Ce programme récupère des caractéristiques du système avec

- System.getProperty( "path.separator" ) pour obtenir le séparateur du PATH

- System.getProperty( "file.separator" ) pour obtenir le séparateur des noms de dossiers d'un PathName

- System.getProperties().getProperty( "os.name" ) pour connaître le système d'exploitation

- System.getProperty( "user.dir" ) pour obtenir le dossier courant (en principe celui du fichier jwhich.class)

- env.get( "JAVA_PREVIOUS_DIR" ) pour obtenir le dossier courant mémorisé par le script d'appel


Script jwhich.bat sous Windows

La variable ~dp0 permet de récupérer l'emplacement du script jwhich.bat

On utilise la commande pushd pour se mettre dans le même dossier que le script dans lequel il doit y avoir le fichier jwhich.class

On utilise la commande popd pour revenir au dossier courant avant l'appel au script


Script jwhich.sh sous Linux

La fichier jwhich.class doit se trouver dans le même dossier que le fichier jwhich.sh

Le fichier jwhich.sh doit être codé en utf-8 et avoir des fins de ligne Unix LF

Si le fichier a été créé sous Windows, penser à utiliser Notepad++

Sous Linux, on peut utiliser les commandes :

iconv -f iso-8859-15 -t utf-8 input > output   et   sed 's/\r//' imput > ouput