Login
Discover
Waves
Decks
Upgrade
Login
Signup
Topics
New
Trending
Hot
New
New
Trending
Hot
New
Controversial
Rising
Promoted
xargs
justyy
busy
Wednesday, November 7, 2018 2:43 PM
Simple xargs replacement for Windows Shell
xargs builds the command from the standard input - however, it is not available for Windows command shell... therefore I 've decided to build one and it turns out a Batch script is enough... Source: @echo
$ 11.964
98
7
1
paul9
shell
Tuesday, January 9, 2018 5:18 AM
xargs 와 간단한 쉘 기반 멀티프로세싱 2부 ping
지난 이야기 "xargs 와 간단한 쉘 기반 멀티프로세싱 1부 웹페이지 다운받기" xargs 와 간단한 쉘 기반 멀티프로세싱 2부 ping 1부에 이어서 이번엔 ping 과 xargs 를 이용해 빠른 속도로 서버의 상태를 체크하는 방법입니다. 핑 테스트 관리하는 서버들의 상태를 알아보기 위해 192.168.1.100 ~ 192.168.1.199
$ 0.000
2
paul9
shell
Sunday, January 7, 2018 12:41 PM
xargs 와 간단한 쉘 기반 멀티프로세싱 1부 웹페이지 다운받기
xargs 는 다양한 용도로 사용할 수 있는데 특히 멀티 프로세싱 큐 기능에 대해서는 의외로 모르는 분들이 많으셔서, 간단히 소개해보도록 하겠습니다. 오늘은 1부 웹페이지 다운받기 입니다. xargs 를 이용한 멀티 프로세싱의 핵심은 "-P" 옵션입니다. 먼저 간단하고 실용적인 예제를 만들어 보겠습니다. 웹페이지 다운받기 1 다음처럼 input.txt
$ 0.542
5
tychebe
security
Thursday, September 1, 2016 4:03 PM
Method of killing all processes of the current shell
□ ps | awk '{print $1}' | xargs kill -9 ○ ps : It prints the running processes ○ | awk '{print $1}' : It prints the first column of the result of ps(=pid) ○ | xargs
$ 0.000
1
Top communities
Create decentralized community