date_select
而不是for f in /path/to/files/*.csv ; do
bname=`basename $f`
pref=${bname%%.csv}
awk -f /path/to/awkscript $f > /path/to/store/output/${pref}_new.txt
done
显示:
我们如何缩短月份和日期:
我的意思是_form而不是输出。
答案 0 :(得分:1)
您可以使用use_short_month
选项缩短月份名称,如下所示:
<%= f.date_select :deadline, order: [:month, :day, :year], use_short_month: true, class: 'date-select' %>
希望它有所帮助!