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( 1 );
}
//-- >>>> UsageExit
//
//-- <<<< main
//
public static void main( String[] args ) {
String Cmde = "";
boolean b_DATE = false;
boolean b_SIZE = false;
if ( ( args.length == 0 ) || ( args.length > 2 ) ) {
UsageExit();
}
Cmde = args[ 0 ];
if ( args.length == 2 ) {
if ( args[ 1 ].equals( "+d" ) ) {
b_DATE = true;
} else if ( args[ 1 ].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( 1 );
}
String PathCmde, VarENV, LIGNE;
String Path_Sep = System.getProperty( "path.separator" );
Map<String, String> env = 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 Dossier: PathDIR.split( Path_Sep ) ) {
if ( Dossier.equals( CURRENT_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 Dossier: PathDIR.split( Path_Sep ) ) {
if ( b_WIN32 && Dossier.contains( "%" ) ) {
for ( String envName : env.keySet() ) {
VarENV = "%" + envName + "%";
Dossier = Dossier.replace( VarENV, env.get( envName ) );
}
}
if ( Dossier.equals( "" ) ) continue;
File Fd_Dossier = new File( Dossier );
if ( ! Fd_Dossier.isDirectory() ) continue;
PathCmde = Dossier + Dirname_Sep + Cmde;
File Fd_Cmde = new File( PathCmde );
if ( Fd_Cmde.isFile() ) {
LIGNE = "";
if ( b_WIN32 || Fd_Cmde.canExecute() ) {
if ( b_DATE ) {
LIGNE = " " + Get_Date( Fd_Cmde );
}
if ( b_SIZE ) {
LIGNE = " " + Get_Size( Fd_Cmde );
}
LIGNE = LIGNE + " + " + PathCmde;
} else {
if ( b_DATE || b_SIZE ) {
LIGNE = String.format( "%17s", " " );
}
LIGNE = " " + LIGNE + " - " + PathCmde;
}
System.out.println( LIGNE );
}
if ( b_WIN32 ) {
String PathEXT = System.getenv( "PATHEXT" ) + ";";
if ( ! PathEXT.contains( ".CPL;") ) {
PathEXT = PathEXT + ".CPL";
}
for ( String Suffix: PathEXT.split( Path_Sep ) ) {
PathCmde = Dossier + Dirname_Sep + Cmde + Suffix.toLowerCase();
File Fd_CmdeWin = new File( PathCmde );
LIGNE = "";
if ( ! Fd_CmdeWin.isFile() ) continue;
if ( b_WIN32 || Fd_CmdeWin.canExecute() ) {
if ( b_DATE ) {
LIGNE = " " + Get_Date( Fd_CmdeWin );
}
if ( b_SIZE ) {
LIGNE = " " + Get_Size( Fd_CmdeWin );
}
LIGNE = LIGNE + " + " + PathCmde;
} else {
if ( b_DATE || b_SIZE ) {
LIGNE = String.format( "%17s", " " );
LIGNE = LIGNE + " - " + PathCmde;
}
LIGNE = LIGNE + " - " + PathCmde;
}
System.out.println( LIGNE );
}
}
}
}
//-- >>>> Main >>>>
//
//-- <<<< Get_Date
//
static String Get_Date( File p_Fd ) {
SimpleDateFormat DatFormat = new SimpleDateFormat( "yyyy_MM-dd hh:mm" );
Date DateLastMod = new Date( p_Fd.lastModified() );
String S_Date = DatFormat.format( DateLastMod );
return S_Date;
}
//-- >>>> Get_Date
//
//-- <<<< Get_Size
//
static String Get_Size( File p_Fd ) {
long L_Size = p_Fd.length();
DecimalFormat formatter = (DecimalFormat) NumberFormat.getInstance( Locale.US );
DecimalFormatSymbols symbols = formatter.getDecimalFormatSymbols();
symbols.setGroupingSeparator( ' ' );
formatter.setDecimalFormatSymbols(symbols);
String S_Size= formatter.format( L_Size );
S_Size = String.format( "%16s", S_Size );
return S_Size;
}
//-- >>>> Get_Size
//
//-- <<<< Get_Size_Old
//
static String Get_Size_Old( File p_Fd ) {
long L_Size = p_Fd.length();
DecimalFormat myFormatter = new DecimalFormat( "###,###" );
String S_Size = myFormatter.format( L_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
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
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