问题很简单.
原文链接:https://www.f2er.com/bash/383428.htmlfor i in `seq $begin $progress_length` ; do progress_bar=$progress_bar'#' done for i in `seq $middle $end` ; do empty_space=$empty_space' ' done
我需要empty_space来在进度条之后定位内容.我预计它将是x空格的字符串.但最后字符串是空的.我怎样才能创建x空格字符串?