Erman Arslan's Oracle Forum
›
Linux
Login
Register
Search
everywhere
only in this topic
Advanced Search
AIX script
Classic
List
Threaded
♦
♦
Locked
5 messages
Options
Loading...
Subscribe via email
Move topic
Pin topic
Unpin topic
Lock topic
Unlock topic
Delete this topic
Delete this topic
Change title and meta tags
Embed post
Permalink
Roshan
Reply
|
Threaded
Open this post in threaded view
♦
♦
|
More
Loading...
Reply to author
Edit post
Move post
Delete this post
Delete this post and replies
Change post date
Print post
Permalink
Raw mail
Jun 08, 2017; 10:17am
AIX script
1294 posts
Hi,
I want to copy files older than 1 day from 1 folder to another. I have a script
find /home/test/*.gz -mtime -1 -exec cp {} targetdir \;
it does not work on aix
Please advise.
Regards,
Roshan
ErmanArslansOracleBlog
Reply
|
Threaded
Open this post in threaded view
♦
♦
|
More
Loading...
Reply to author
Edit post
Move post
Delete this post
Delete this post and replies
Change post date
Print post
Permalink
Raw mail
Jun 08, 2017; 12:06pm
Re: AIX script
Administrator
5727 posts
I have no AIX currently, so test the below command yourself; (in a test system first)
find /search_dir -name "*.txt" | xargs -t -I {} cp -p {} {} /dest_dir/
Roshan
Reply
|
Threaded
Open this post in threaded view
♦
♦
|
More
Loading...
Reply to author
Edit post
Move post
Delete this post
Delete this post and replies
Change post date
Print post
Permalink
Raw mail
Jun 09, 2017; 5:38am
Re: AIX script
1294 posts
The script is working. But where should I specify the time?
Roshan
Reply
|
Threaded
Open this post in threaded view
♦
♦
|
More
Loading...
Reply to author
Edit post
Move post
Delete this post
Delete this post and replies
Change post date
Print post
Permalink
Raw mail
Jun 09, 2017; 5:50am
Re: AIX script
1294 posts
I have tested it with
find /archicom/data/arch/chrg/MMS/*gz -mtime +0 -mtime -2 -exec cp {} /u01/migrationprod \;
it works
Thanks
ErmanArslansOracleBlog
Reply
|
Threaded
Open this post in threaded view
♦
♦
|
More
Loading...
Reply to author
Edit post
Move post
Delete this post
Delete this post and replies
Change post date
Print post
Permalink
Raw mail
Jun 09, 2017; 7:07am
Re: AIX script
Administrator
5727 posts
Good Roshan..
Free forum by Nabble
Edit this page