목록command (9)
준호씨의 블로그
You can see stderr "No such file or directory" when you 'cat' none exists file $ cat nonexistent_file cat: nonexistent_file: No such file or directory If you want to hide stderr, attach 2>/dev/null after command cat nonexistent_file 2>/dev/null Tip 'grep' command has '-s' option to hide error message about nonexistent or unreadable files. -s, --no-messages Suppress error messages about nonexiste..
yyyy-mm-dd hh:mm:ss Time::Piece 로 localtime 에 strftime 함수 추가해서 사용하기 use Time::Piece; print localtime->strftime('%F %T'); Time::Piece 모듈을 사용하게 되면 localtime 에 strftime 함수가 오버라이드 된다. Time::Piece 모듈은 Perl 5.10 부터 기본 모듈로 들어가 있다. 만약 없다면 cpan 으로 설치 해 주면 된다. cpan Time::Piece Time::Piece 관련 릴리즈노트 5.8 에서 Time::Piece (이전에는 Time::Object) 가 제거 됨 https://perldoc.perl.org/perl58delta.html 5.10 에 Time::Piece 가 ..
fileA a b c 10 20 30 fileB b c d 30 fileA - fileB $ grep -F -x -v -f fileB fileA 1 10 20 shorter way $ grep -Fxvf fileB fileA 1 10 20 man grep ... -F, --fixed-strings Interpret pattern as a set of fixed strings (i.e. force grep to behave as fgrep). -f file, --file=file Read one or more newline separated patterns from file. Empty pattern lines match every input line. Newlines are not considered p..
맥북 기본 설정에서 일반 키보드를 연결 했을 때 불편한 점 중 하나는 키가 몇가지 다르다는 것이다. 맥북의 키 순서는 fn, control, option, command 일반 키보드는 Ctrl (Control), Win, Alt 맥북의 키 순서에 익숙하다면 Win 키와 Alt 키의 위치를 바꾸는 것이 편리하다. System Preferences -> Keyboard 로 이동 한다. 아래쪽에 Modifier Keys 를 누른다. Select keyboard 를 누르면 USB 로 연결한 키보드도 볼 수 있다. 나의 키보드를 선택하도록 하자. 아래와 같이 일부 키를 바꿀 수 있는 설정을 제공하고 있다. Option 을 Command 로, Comand 를 Option 으로 바꾸면 끝