wc가 bash에서 반환하는 정수를 얻는 방법이 있습니까?
기본적으로 파일 이름 뒤에 줄 번호와 단어 수를 화면에 쓰고 싶습니다.
output: filename linecount wordcount
지금까지 내가 가지고있는 것은 다음과 같습니다.
files=`ls`
for f in $files;
do
if [ ! -d $f ] #only print out information about files !directories
then
# some way of getting the wc integers into shell variables and then printing them
echo "$f $lines $ words"
fi
done