ファイルの変更時間に基づいてディレクトリ名を作成したいと思います。たとえば、ファイルの作成または変更が2016年3月17日18:00:00の場合、名前が1703206
HP-UXのファイルを生成しようとします。
答え1
POSIXツール(HP-UXにはもうありません)のみを使用すると、ファイルの修正時間を取得する便利な方法がないため難しいです。を使用する場合は、ls -l
月、日、家、分を含む最近のファイルと、月、日、年を含む古いファイル(> 6ヶ月)の2つのケースを処理する必要があります。 (適切なロケールを作成するより簡単な方法があるかもしれませんが、HP-UXでは可能かどうかわかりません。)
#!/bin/sh
set -e -f
set -- $(LC_ALL=C ls -dlog -- "$1")
# $1=permissions $2=link_count $3=size $4,$5,$6=date_time $7...=filename
case $4 in
Jan) month=1;;
Feb) month=2;;
Mar) month=3;;
Apr) month=4;;
May) month=5;;
Jun) month=6;;
Jul) month=7;;
Aug) month=8;;
Sep) month=9;;
Oct) month=10;;
Nov) month=11;;
Dec) month=12;;
esac
case $6 in
*:*) # The timestamp is within the last 6 month, so
# the year is the current or previous year.
current_month=$(LC_ALL=C date +%Y%m)
year=${current_month%??}
current_month=${current_month#????}
case $current_month in 0*) current_month=${current_month#0};; esac
if [ $current_month -lt $month ]; then year=$((year-1)); fi;;
*) year=$6;;
esac
if [ $month -le 9 ]; then month=0$month; fi
day=$5
if [ $day -le 9 ]; then day=0$day; fi
mkdir $year$month$day
古いBourneシェルを含む以前のバージョンのHP-UXを使用している場合は、shebang行をPOSIXシェル(kshなど)のパスに置き換える必要が/bin/sh
あります。/bin/sh
答え2
Linuxでは、foo
ファイル
stat -c %Z foo
エポック以来の秒を提供します。 (参照、、、、をman stat
使用して作成時間、アクセス時間、変更時間、変更時間を表すことができます)%W
%X
%Y
%Z
date --date=@$(stat -c %Z foo) +%m%d%y
形式をお知らせします。
だから
mkdir bar/prefix$(date --date=@$(stat -c %Z foo) +%m%d%y)suffix
foo
bar
、prefix
およびをsuffix
実際のファイル名と希望のファイル名に変更します。- 興味深い文字を避けるために、varの周りに引用符を使用してください。