리눅스
tee 명령어
변군이글루
2025. 1. 8. 15:40
반응형
tee 명령어
1. sudo tee -a 사용 (권장)
cat <<EOF | sudo tee -a /etc/security/limits.conf > /dev/null
# Add parameter for WebServer
* soft nofile 65535
* hard nofile 65535
* soft nproc unlimited
* hard nproc unlimited
EOF
2. 직접 파일 수정
sudo cat <<EOF >> /etc/security/limits.conf
# Add parameter for WebServer
* soft nofile 65535
* hard nofile 65535
* soft nproc unlimited
* hard nproc unlimited
EOF
더보기
---
sudo bash -c 'cat <<EOF >> /etc/security/limits.conf
# Add parameter for WebServer
* soft nofile 65535
* hard nofile 65535
* soft nproc unlimited
* hard nproc unlimited
EOF'
---
3. 명령어를 스크립트화
#!/bin/bash
LIMITS_FILE="/etc/security/limits.conf"
sudo tee -a "$LIMITS_FILE" > /dev/null <<EOF
# Add parameter for WebServer
* soft nofile 65535
* hard nofile 65535
* soft nproc unlimited
* hard nproc unlimited
EOF
echo "Updated $LIMITS_FILE successfully."
첫 번째 명령어(sudo tee -a) 방식이 더 안전하고 오류를 방지하며 권한 문제 해결에 유리합니다.
참고URL
- 변군이글루 블로그(Byeon-gun's Igloo Blog) : tee 명령어
728x90
반응형