Open practice opened 9 years ago
ps 명령어에서 full command line 보기
ps -ef | cat
Create a Large File from the Command Line
mkfile -n size[b|k|m|g] filename mkfile -n 1g ~/Desktop/LargeTestFile
colorized, scrollable tree of directories, including the readable size of each node
tree -C --du -h . | less -R
find -exec
$ sudo find . -type f -name '*' -exec rm {} \;
{}
;
\
ps 명령어에서 full command line 보기
Create a Large File from the Command Line
colorized, scrollable tree of directories, including the readable size of each node
find -exec
{}
은 찾은 파일 이름;
은 실행할 명령어의 끝을 의미. 하지만;
는 특수문자이므로\
이 필요.