Linux 명령으로 파일 크기를 평가하기 위한 팁
For example: Service/Import.php with 1185 lines, and it does definitively too much and should be refactored.
cd src
find . -name '*.php' | xargs wc -l | sort -nr
20844 total
1791 ./Service/PageGenerator.php
1185 ./Modules/Importer/Service/Import.php
542 ./Entity/Base/Area.php
447 ./Entity/PublicInfo.php
363 ./Controller/FrontendController.php
339 ./Modules/MyAPI/Provider/Dto/AreasDto.php
307 ./Entity/Base/OpeningTime.php
298 ./Entity/Opening.php
290 ./Entity/SpecialSale.php
289 ./Modules/Exporter/Model/ExportStoresModel.php
258 ./Entity/User.php
232 ./Modules/MyAPI/Provider/Dto/PublicInfoDto.php
230 ./Repository/StoreRepositoryDBAL.php
221 ./Repository/StoreRepository.php
214 ./Entity/Base/TemporaryClosing.php
205 ./Controller/OpeningController.php
196 ./Entity/Base/Competitor.php
178 ./Form/PublicInfoType.php
177 ./Modules/Exporter/Api/Bing/Stores.php
177 ./Form/OpeningType.php
173 ./Form/SpecialSaleType.php
166 ./Entity/Base/StatusDevelopment.php
[업데이트됨]
zsh
를 사용하는 사용자는 다음 바로 가기를 사용할 수 있습니다.$ cd src
$ wc -l **/*.php | sort -nr
물론 동일한 작업을 수행할 수 있는 많은 코드 정적 도구가 있습니다. 그러나이 명령은 편리합니다 💫
Reference
이 문제에 관하여(Linux 명령으로 파일 크기를 평가하기 위한 팁), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/vikbert/tip-for-evaluating-file-size-with-linux-command-4m58텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)