[Linux]dateコマンド、shellスクリプトの繰り返し


エラーによる作業の記録
仕事中にNASが1週間閉鎖されたことに気づきました...
DBをmariabackupに再増分バックアップし、プログラムログも再バックアップのために確認しています.
え...?
1つのサービスは昨年12月からcrontabが正常に動作していないので、ログのバックアップはありません...?
crontabが頻繁に追加され、service crond stop & service crond startのように再起動されると、正常に動作しない可能性があります.
5ヶ月後、ログをバックアップするために、毎日138日間戻る必要があることがわかりました.
操作を繰り返すためにshell scriptを軽く...

date


linuxに組み込まれたdate version 8.30に基づいて、以下に示すように多くのオプションが用意されています.
  %%   a literal %
  %a   locale's abbreviated weekday name (e.g., Sun)
  %A   locale's full weekday name (e.g., Sunday)
  %b   locale's abbreviated month name (e.g., Jan)
  %B   locale's full month name (e.g., January)
  %c   locale's date and time (e.g., Thu Mar  3 23:05:25 2005)
  %C   century; like %Y, except omit last two digits (e.g., 20)
  %d   day of month (e.g., 01)
  %D   date; same as %m/%d/%y
  %e   day of month, space padded; same as %_d
  %F   full date; same as %Y-%m-%d
  %g   last two digits of year of ISO week number (see %G)
  %G   year of ISO week number (see %V); normally useful only with %V
  %h   same as %b
  %H   hour (00..23)
  %I   hour (01..12)
  %j   day of year (001..366)
  %k   hour, space padded ( 0..23); same as %_H
  %l   hour, space padded ( 1..12); same as %_I
  %m   month (01..12)
  %M   minute (00..59)
  %n   a newline
  %N   nanoseconds (000000000..999999999)
  %p   locale's equivalent of either AM or PM; blank if not known
  %P   like %p, but lower case 
  %q   quarter of year (1..4)
  %r   locale's 12-hour clock time (e.g., 11:11:04 PM)
  %R   24-hour hour and minute; same as %H:%M
  %s   seconds since 1970-01-01 00:00:00 UTC
  %S   second (00..60)
  %t   a tab
  %T   time; same as %H:%M:%S
  %u   day of week (1..7); 1 is Monday
  %U   week number of year, with Sunday as first day of week (00..53)
  %V   ISO week number, with Monday as first day of week (01..53)
  %w   day of week (0..6); 0 is Sunday
  %W   week number of year, with Monday as first day of week (00..53)
  %x   locale's date representation (e.g., 12/31/99)
  %X   locale's time representation (e.g., 23:13:48)
  %y   last two digits of year (00..99)
  %Y   year
  %z   +hhmm numeric time zone (e.g., -0400)
  %:z  +hh:mm numeric time zone (e.g., -04:00)
  %::z  +hh:mm:ss numeric time zone (e.g., -04:00:00)
  %:::z  numeric time zone with : to necessary precision (e.g., -04, +05:30)
  %Z   alphabetic time zone abbreviation (e.g., EDT)
その中で私がよく使う選択肢は以下の通りです.
date -d 'yesterday' -- 하루 전
date -d '1 day ago' -- 하루 전
date -d '+1 day' -- 하루 후
date -d '-1 day' -- 하루 전
date -d '2 day ago' -- 이틀 전
date -d '1 week ago' -- 일주일 전
date -d '1 month ago' -- 한 달 전
date -d '1 year ago' -- 일년 전

date +%j  -- 1월1일부터 12월 31일 까지 1 ~ 365(윤년 366) 으로 변환해서 오늘이 며칠 째인지 출력된다. 

### 옵션을 이어서 적으면 그대로 연결되서 출력된다.
date +%Y%m%d -- YYYYMMDD 형식으로 format
date +%Y-%m-%d -- YYYY-MM-DD 형식으로 format

shell反復文


shellでは、C++、JAVA、JSなどの言語のように重複文を使用することもできます.
while [조건] :
do
	...
done
上記のwhile文を使用できます.条件式では次の式を使用できます.
式機能例gt(大きい)大きいa gtbge(大きいまたは等しい)大きいa ge blt(小さい)小さいle(小さいまたは等しい)はeq(等しい)像ne(等しくない)に等しくない
あるいは、for文も使用できます
for i in 1 2 3
do
 	...
done

for i in {1..3}
do
	...
done

for ((i=1; i<4; i++))
do
	...
done


array=("test1" "test2")

for i in ${array[@]}
do
	echo $i
done
上のようにも使えます…!