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