aboutsummaryrefslogtreecommitdiff
path: root/bin/samsave
blob: 7d3a0fb07416f7eb7faec2c4ef12a457d5d42041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
# Copyright (c) 1998 Lucent Technologies - All rights reserved.

file=$1
case "$2" in
-f)
	echo "$file"
	cat >$file
	;;
"")
	echo "$file?"
	read yn </dev/tty
	case "$yn" in
	[Yy]*)
		cat >$file
	esac
esac