As the situation is right now, importing one of the commands the script replaces, requires a doc/UPDATING step. By moving the script to a shared folder, and symlinking it once per command, this allows for separatly installed files on the system, instead of one file being symlinked multiple times. Change-Id: I0dae96982bca5168b852ed70fff61442441b929f
		
			
				
	
	
		
			12 lines
		
	
	
		
			181 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			181 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# cd 1.3 - equivalents for normally builtin commands.	Author: Kees J. Bot
 | 
						|
 | 
						|
case $0 in
 | 
						|
*/*)	command="`expr "$0" : '.*/\(.*\)'`"
 | 
						|
	;;
 | 
						|
*)	command="$0"
 | 
						|
esac
 | 
						|
 | 
						|
"$command" "$@"
 |