zip -P password -r F.zip F

unzip -P your-password zipfile.zip


'USA Life' 카테고리의 다른 글

dc_shell  (0) 2018.11.01
[Error] github HTTP request failed  (0) 2018.10.18
Linux 용량 확인 명령어  (0) 2018.10.12
rm -rf 가 먹히지 않을 때.  (0) 2018.10.12
Make cd automatically ls  (0) 2018.09.22

- Open DC SHELL


>> dc_shell





- 내부에서 tcl file 실행할 때

DC_SHELL>> source ./~.tcl





- 만약 tcsh에서 dc_shell 명령어를 쓰고 싶다면(예를 들어서 python에서 dc_shell 명령어를 실행) -f option을 이용한다.


>>dc_shell -f ./~.tcl


여기서 ~.tcl file의 제일 밑에 exit도 같이 입력해주면, 해당 tcl file만 dc_shell 내부에서 실행하고 바로 빠져나온다.






- 해당 library에 scale/unit을 알고 싶다면


DC_SHELL>>report_units








'USA Life' 카테고리의 다른 글

Unix Zip/UnZip  (0) 2019.02.01
[Error] github HTTP request failed  (0) 2018.10.18
Linux 용량 확인 명령어  (0) 2018.10.12
rm -rf 가 먹히지 않을 때.  (0) 2018.10.12
Make cd automatically ls  (0) 2018.09.22

https://help.github.com/enterprise/2.13/user/articles/adding-a-new-ssh-key-to-your-github-account/

'USA Life' 카테고리의 다른 글

Unix Zip/UnZip  (0) 2019.02.01
dc_shell  (0) 2018.11.01
Linux 용량 확인 명령어  (0) 2018.10.12
rm -rf 가 먹히지 않을 때.  (0) 2018.10.12
Make cd automatically ls  (0) 2018.09.22

df -h



du -h



du -sh *

해당 directory 밑에 한 층만 보여줌. 


du -a

파일 단위로 사용량 보여줌

'USA Life' 카테고리의 다른 글

Unix Zip/UnZip  (0) 2019.02.01
dc_shell  (0) 2018.11.01
[Error] github HTTP request failed  (0) 2018.10.18
rm -rf 가 먹히지 않을 때.  (0) 2018.10.12
Make cd automatically ls  (0) 2018.09.22

https://unix.stackexchange.com/questions/11238/how-to-get-over-device-or-resource-busy


how to get over device or resource busy


lsof +D /path

를 입력해서 /path 밑에서 아직 활동하고 있는 애들을 찾아낸 뒤에,

kill 명령어를 통해서 해당 process를 꺼주자.

그러면 rm -rf 가 먹힌다.


'USA Life' 카테고리의 다른 글

Unix Zip/UnZip  (0) 2019.02.01
dc_shell  (0) 2018.11.01
[Error] github HTTP request failed  (0) 2018.10.18
Linux 용량 확인 명령어  (0) 2018.10.12
Make cd automatically ls  (0) 2018.09.22

~/.bashrc


내부에


function cd {
    builtin cd "$@" && ls -F
    }

넣기


그러면 cd만 해도 자동으로 ls 해준다.

'USA Life' 카테고리의 다른 글

Unix Zip/UnZip  (0) 2019.02.01
dc_shell  (0) 2018.11.01
[Error] github HTTP request failed  (0) 2018.10.18
Linux 용량 확인 명령어  (0) 2018.10.12
rm -rf 가 먹히지 않을 때.  (0) 2018.10.12

+ Recent posts