所以我有一个必须为课堂编写的库脚本。它有几个功能,例如addbook,deletebook,checkout等。问题出在我的结帐功能上。
colin@Colins-Samsung:~$ bash --version GNU bash,版本 4.2.45(1)-release (x86_64-pc-linux-gnu) 版权所有 (C) 2011 Free Software Foundation, Inc. 许可证 GPLv3+:GNU GPL 版本3 或更高版本http://gnu.org/licenses/gpl.html
所以首先这是我的字符串(用逗号分隔的字段)
表格书,作者,图书馆,日期
string= Unix for programmers,Graham Glass,mylibrary,11-11-13
我已经在前几行代码中声明了我的标题、库和日期,但是当我尝试声明作者时,我使用这行代码
author=`awk -F, '/'$title'/ {print $2}' $library`
我相信这是我的问题所在
字符串最终发生的事情是作者变为空,所以在我的函数完成后,字符串现在是
Unix for programmers,,mylibrary,11-11-13
因此,这行代码中似乎发生了一些事情: '/'$title'/ {print $2}' 我的问题是什么?
我试过了
author=`awk -F, "/'$title'/ {print $2}" $library`
我也试过##
author=`egrep "$title" $library | awk -F, '{print $2}' $library`
但是在这两个帐户上,我都会遇到一些错误,要么是失控的正则表达式,要么是无效的命令。
这是我要修复的整个功能
checkout(){
echo please enter your username
read username
uCount=`egrep "$username" $library | wc -l`
if (( $uCount >=3 ))
then
echo "Sorry, you can only have 3 books checked out at a time"
else
echo "what is the name of the book you would like to check out?"
read title
exists=`egrep "$title" $library | wc -l`
if (( $exists == 0 ))
then
echo "Sorry, but this book does not exist"
else
author=`awk -F, '/'$title'/ {print $2}' $library`
##author=`egrep "$title" $library | awk -F, '{print $2}' $library`
##author=`awk -F, "/'$title'/ {print $2}" $library`
##String = unix,graham glass,mylib,11-11-13
updated=$title,$author,$username,`date +%F`
sed -e "/$title/d" $library > $tmp
echo $updated >> $tmp
mv $tmp $library
echo "$title succesfully checked out"
fi
fi
请指教。提前感谢您的帮助