본문 바로가기
반응형

OS91

exec와 xargs 차이 exec와 xargs 차이 find . -name H* -exec ls -l {} \; executes the command ls -l on each individual file. find . -name H* | xargs ls -l constructs an argument list from the output of the find commend and passes it to ls. consider if the ouput of the find command produced: H1 H2 H3 the first command would execute ls -l H1 ls -l H2 ls -l H3 but the second would execute ls -l H1 H2 H3 2022. 1. 8.
centos8 docker install # docker install dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo dnf list docker-ce dnf install docker-ce docker-ce-cli containerd.io --nobest systemctl start docker systemctl enable docker # docker-compose install curl -L https://github.com/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose chmod 75.. 2020. 8. 31.
mac에 MySQL 설치하기 Homebrew 설치하기 macOS에는 macOS 용 패키지 관리자 Homebrew가 있다. Homebrew를 이용하면 설정 과정이 단순하고, 환경변수 설정이 필요없고, 관리하기 편하다. 터미널에 아래의 명령어 입력 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" "Press RETURN to continue or any other key to abort" 라는 문장이 뜨면, 엔터키(리턴키)를 눌러준다. password에는 mac의 비밀번호를 입력해주면 된다. 아래의 명령어로 cask 패키지(Safari, Chrome, Word 등과 같이 그래픽을 통해 작업하는 프로그램을 설치.. 2020. 7. 16.
How to Install Java on Linux Mint 19 How to Install Java on Linux Mint 19 Table of Contents Prerequisites 1. Install Default OpenJDK 2. Install OpenJDK 8, 10, or 11 3. Install Oracle Java With apt 4. Install Java From Oracle Website on Linux Mint 19 5. Setting up default Java Version on Linux Mint 19 6. Set the JAVA_HOME Environment Variable Conclusion Install Java on Linux Mint 19 Java is the popular programming language owned by .. 2020. 1. 11.
반응형