Skip to content

Latest commit

 

History

History
67 lines (52 loc) · 1.09 KB

README.md

File metadata and controls

67 lines (52 loc) · 1.09 KB

Shell


쓰기방지 해제

chattr -i /etc/sysctl.conf

스크립트 원격 서버에서 실행

# script.sh 스크립트 파일을 원격 서버로 보내서 실행
ssh user@hostname bash < script.sh

# bash: command not found 라는 에러가 발생했을 경우
ssh user@hostname bash --login < script.sh

절대경로

abspath="$( cd "$( dirname "$0" )" && pwd -P )"

하위 디렉토리 용량 확인

du -sh ./* | sort -r

파일 내용 치환

# AAA ➞ BBB
sed 's/AAA/BBB/g' test.txt

zip 파일 압축 풀기

unzip file_name.zip