bash file read and work bash file read and loop work example) input file : t1 workjob : echo file line, wc -l : line count unix 2017.07.13
find by day after in linux unix 파일찾기중... 가장 많이 하는작업 중하나가, 날짜기준으로 변경된 내역을 구하기라고 생각 합니다. 아래는 현재 폴더의 7일 (1주일) 이전에 생성되거나 수정된 파일만 오름차순으로 표시하기 예제 입니다. find . -type f -maxdepth 1 -mtime -7 | xargs ls -tlr unix 2014.02.21
file name by awk 단순하게... 특정 디렉토리의 파일이름을 가져오고 싶으시면... deviceDetail$ ls -l | awk '{print $9}' deviceDetail$ ls -l | awk '{print $9}'file1file2file3 deviceDetail$ unix 2014.02.13