source: trunk/minix/commands/ftpd200/ftpdsh@ 9

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

Minix 3.1.2a

File size: 227 bytes
Line 
1#!/bin/sh
2
3case $1 in
4 1) ls -A $2 ;;
5 2) ls -la $2 ;;
6 3) crc $2 ;;
7 12) tar cf - $2 ;;
8 13) tar cf - $2 | compress -q ;;
9 14) compress -cq $2 ;;
10 15) tar cf - $2 | gzip ;;
11 16) tar -c $2 ;;
12 17) compress -dcq $2 ;;
13esac
14exit
Note: See TracBrowser for help on using the repository browser.