반응형 Development Solutions142 [ubuntu][bash] How to do when tab autocomplete expansion does not work (tab 자동완성 확장이 안될 때 방법) [Solved][ubuntu][bash]How to do when tab autocomplete expansion does not work(tab 자동완성 확장이 안될 때 방법) step 1. sudo apt-get install bash-completion step 2. sudo vi /root/.bashrc step 3. 아래 코드 부분의 주석을 제거 (Uncomment the below code part) if [ -f /etc/bash_completion ] && ! shopt -oq posix; then . /etc/bash_completion step 4. reboot 2022. 8. 30. [flutter_email_sender] How to implement email sending in a flutter project (플러터 프로젝트에서 이메일 보내기 구현하는 방법) flutter_email_senderHow to implement email sending in a flutter project(플러터 프로젝트에서 이메일 보내기 구현하는 방법) 우선 프로젝트에 flutter_email_sender 라이브러리를 설치한다. (First of all, the flutter email _ sender to install the library.)dependencies: flutter_email_sender: ^5.1.0 소스코드에서는 아래와 같이 라이브러리를 import한다. (Source code import the library as follows.)import 'package:flutter_email_sender/flutter_email_sender.dart'; 이메일.. 2022. 8. 29. [linux] 'ripgrep' more than 3x faster than grep (grep보다 3배 이상 빠른 ripgrep) [linux]'ripgrep' more than 3x faster than grep(grep보다 3배 이상 빠른 ripgrep)[linux][shell] grep보다 3배 이상 빠른 ripgrep ripgrep github page https://github.com/BurntSushi/ripgrep#installation GitHub - BurntSushi/ripgrep: ripgrep recursively searches directories for a regex pattern while respecting your gitignoreripgrep recursively searches directories for a regex pattern while respecting your gitignore - G.. 2022. 8. 24. [Solved][Linux] Count grep results: wc command (grep 결과의 개수 세기: wc 명령어) Count grep results: wc command(grep 결과의 개수 세기: wc 명령어) grep의 결과가 너무 많아서 카운트하기 어려울 때 wc -l 옵션을 사용하면 간단히 grep 결과의 전체 라인 행 수를 셀 수 있습니다. ex) grep -r "mem" ./ | wc -l wc 명령어 옵션-c 지정 파일의 byte-m 지정 파일의 문자 개수-l 지정 파일의 총 행 개수-w 지정 파일의 총 단어 개수-L 지정 파일의 모든 행 중, 가장 길이가 긴 행의 문자 개수 (When there are too many grep results to count,The wc -l option allows you to simply count the total number of line rows of g.. 2022. 8. 24. 이전 1 ··· 19 20 21 22 23 24 25 ··· 36 다음 반응형