리눅스 명령어 touch 크기가 0인 파일 생성이나 파일 날짜 갱신 시 사용

리눅스 명령어 touch 크기가 0인 파일 생성이나 파일 날짜 갱신 시 사용

파일 사이즈가 0인 파일을 간편하게 생성 할 때 사용하는 명령어입니다.

저 같은 경우는 가끔 사용하는데 다음 날 갱신 할 파일이 있을 때
오늘 해당 파일 생성 해 놓고

다음 날 갱신 할 때 사용하곤 합니다.



[root@localhost test]# touch vash
[root@localhost test]# ll
total 0
-rw-r--r-- 1 root root 0 Oct  5 09:00 vash
[root@localhost test]# touch vash
[root@localhost test]# ll
total 0
-rw-r--r-- 1 root root 0 Oct  5 09:01 vash
[root@localhost test]#   
[root@localhost test]#
[root@localhost test]# touch --help
Usage: touch [OPTION]... FILE...
Update the access and modification times of each FILE to the current time.

Mandatory arguments to long options are mandatory for short options too.
  -a                     change only the access time
  -c, --no-create        do not create any files
  -d, --date=STRING      parse STRING and use it instead of current time
  -f                     (ignored)
  -m                     change only the modification time
  -r, --reference=FILE   use this file's times instead of current time
  -t STAMP               use [[CC]YY]MMDDhhmm[.ss] instead of current time
  --time=WORD            change the specified time:
                           WORD is access, atime, or use: equivalent to -a
                           WORD is modify or mtime: equivalent to -m
      --help     display this help and exit
      --version  output version information and exit

Note that the -d and -t options accept different time-date formats.

If a FILE is -, touch standard output.

Report bugs to <bug-coreutils@gnu.org>.
[root@localhost test]#