由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - A Question on Shell (ksh) programming
相关主题
shell programming问题:如何同时run多个作业求教,学shell program
[急!] Shell Programming求救login shell and normal shell?
Help! shell programminghow to change login shell?
[转载] shell programming and awk questionsrecommend a network programming book
菜鸟问题-about shell programmingJob Opportunity
菜鸟2问题-about shell programming[转载] About the history
Is this shell programming right?如何单步执行shell?
One shell questionUNIX SHELL 下中文
相关话题的讨论汇总
话题: month话题: year话题: ksh话题: yesterday话题: date
进入Unix版参与讨论
1 (共1页)
c**t
发帖数: 2744
1
I tried to get full date string of yesterday with format YYYYMMDD.
The following function works fine except the end of each month. Could
anybody tell me why? and how to fix?
Thanks
#!/usr/bin/ksh
GetDate ()
{
YESTERDAY=$((`date +%d` -1))
MONTH=`date +%m`
YEAR=`date +%Y`
if [ $YESTERDAY -eq "0" ]
then
MONTH=$((MONTH-1))
if [ $MONTH -eq "0" ]
then
MONTH=12
YEAR=$((YEAR-1))
fi
set `cal $MONTH $YEAR`
shift $(($# - 1))
t*u
发帖数: 186
2
i commented out "GetDate ()" and "{}", made it into a script, it works
correctly on my machine.

【在 c**t 的大作中提到】
: I tried to get full date string of yesterday with format YYYYMMDD.
: The following function works fine except the end of each month. Could
: anybody tell me why? and how to fix?
: Thanks
: #!/usr/bin/ksh
: GetDate ()
: {
: YESTERDAY=$((`date +%d` -1))
: MONTH=`date +%m`
: YEAR=`date +%Y`

c**t
发帖数: 2744
3
Did you change your system date to 11/01/2003 or 10/01/2003?
As I stated it works fine except the last day of a month.

【在 t*u 的大作中提到】
: i commented out "GetDate ()" and "{}", made it into a script, it works
: correctly on my machine.

t*u
发帖数: 186
4
yea, set the date to 10/01/2003, it prints "2003930".

【在 c**t 的大作中提到】
: Did you change your system date to 11/01/2003 or 10/01/2003?
: As I stated it works fine except the last day of a month.

1 (共1页)
进入Unix版参与讨论
相关主题
UNIX SHELL 下中文菜鸟问题-about shell programming
which shell is best?菜鸟2问题-about shell programming
shell programmingIs this shell programming right?
where can I find some good website for C Shell ?One shell question
shell programming问题:如何同时run多个作业求教,学shell program
[急!] Shell Programming求救login shell and normal shell?
Help! shell programminghow to change login shell?
[转载] shell programming and awk questionsrecommend a network programming book
相关话题的讨论汇总
话题: month话题: year话题: ksh话题: yesterday话题: date