作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里遇到了一些麻烦。我想将 ls 命令的输出捕获到变量中。然后稍后使用该变量并计算其中的行数。我尝试了一些变体
这有效,但如果没有 .txt 文件,它表示计数为 1:
testVar=`ls -1 *.txt`
count=`wc -l <<< $testVar`
echo '$count'
这适用于没有 .txt 文件的情况,但当有 .txt 文件时计数会减 1:
testVar=`ls -1 *.txt`
count=`printf '$testVar' | wc -l`
echo '$count'
此变体还表示当不存在 .txt 文件时计数为 1:
testVar=`ls -1 *.txt`
count=`echo '$testVar' | wc -l`
echo '$count'
编辑:我应该提到这是 korn shell。
最佳答案
正确的做法是使用数组。
# Use ~(N) so that if the match fails, the array is empty instead
# of containing the pattern itself as the single entry.
testVar=( ~(N)*.txt )
count=${#testVar[@]}
关于shell - 如何计算shell脚本中变量的行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32727174/
COW 不是奶牛,是 Copy-On-Write 的缩写,这是一种是复制但也不完全是复制的技术。 一般来说复制就是创建出完全相同的两份,两份是独立的: 但是,有的时候复制这件事没多大必要
我是一名优秀的程序员,十分优秀!