docs: replace fgrep with grep -F
It's been deprecated for decades and in Debian system it's starting to print warnings. Just use grep -F instead. Signed-off-by: Ralph Giles <giles@thaumas.net>
This commit is contained in:
parent
82ac57d9f1
commit
f3de7ca743
1 changed files with 1 additions and 1 deletions
|
@ -46,5 +46,5 @@ cat ${HTML} | sed -e 's/ *$//g' > ${HTML}+ && mv ${HTML}+ ${HTML}
|
|||
cat ${CSS} | sed -e 's/ *$//g' > ${CSS}+ && mv ${CSS}+ ${CSS}
|
||||
|
||||
|
||||
VERSION=$(fgrep Version ${HTML} | sed 's/.*Version \([0-9]\.[0-9]\.[0-9]\).*/\1/')
|
||||
VERSION=$(grep -F Version ${HTML} | sed 's/.*Version \([0-9]\.[0-9]\.[0-9]\).*/\1/')
|
||||
echo Now at version ${VERSION}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue