source: trunk/minix/commands/scripts/cd.sh@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 181 bytes
Line 
1#!/bin/sh
2#
3# cd 1.3 - equivalents for normally builtin commands. Author: Kees J. Bot
4
5case $0 in
6*/*) command="`expr "$0" : '.*/\(.*\)'`"
7 ;;
8*) command="$0"
9esac
10
11"$command" "$@"
Note: See TracBrowser for help on using the repository browser.