mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
19 lines
216 B
Text
19 lines
216 B
Text
|
#!/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
|
||
|
|