25 lines
		
	
	
		
			527 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			527 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
 | 
						|
source "$(dirname -- "$0")/../src/nulib.sh" || exit 1
 | 
						|
#NULIB_NO_DISABLE_SET_X=1
 | 
						|
 | 
						|
args=(
 | 
						|
    "afficher divers messages avec les fonctions e*"
 | 
						|
)
 | 
						|
parse_args "$@"; set -- "${args[@]}"
 | 
						|
 | 
						|
eimportant "important (q)"
 | 
						|
eattention "attention (q)"
 | 
						|
eerror "error (q)"
 | 
						|
ewarn "warn (q)"
 | 
						|
enote "note (qv)"
 | 
						|
einfo "info (qv)"
 | 
						|
eecho "echo (qv)"
 | 
						|
edebug "debug (D)"
 | 
						|
 | 
						|
estep "step (qv)"
 | 
						|
estepe "stepe (qv)"
 | 
						|
estepw "stepw (qv)"
 | 
						|
estepn "stepn (qv)"
 | 
						|
estepi "stepi (qv)"
 |