이 두 줄의 코드를 한 줄로 작성할 수 있는 방법이 있나요?
nc -l 17500 > listenToNetcat.txt
chmod 754 listenToNetcat.txt
답변1
nc -l 17500 >> listenToNetcat.txt |xargs chmod 754 listenToNetcat.txt
이 두 줄의 코드를 한 줄로 작성할 수 있는 방법이 있나요?
nc -l 17500 > listenToNetcat.txt
chmod 754 listenToNetcat.txt
nc -l 17500 >> listenToNetcat.txt |xargs chmod 754 listenToNetcat.txt