Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 129
1
#env bash
2
if [ $# != 2 ]; then
3
echo "Usage: $(basename $0) inFile outFile"
4
exit
5
fi
6
7
echo "There are" $# "arguments"
8
sed -E -f sedCommands $1 > $2
9
10