Search Results

Search: Posts Made By: johninweb
1,295
Posted By Corona688
Use your own temporary file to do that. ...
Use your own temporary file to do that.

touch /tmp/flagfile
find . -newer /path/to/flagfile | ...
touch --reference=/tmp/flagfile /path/to/flagfile
rm /tmp/flagfile Note how the timestamp is...
8,934
Posted By itkamaraj
using awk for i in *.jpg; do cp $i...
using awk


for i in *.jpg; do cp $i $(echo $i | nawk -F. '{print toupper($1)"."$2}'); done
8,934
Posted By itkamaraj
for i in *.jpg; do ext=${i##*.}; name=$(basename...
for i in *.jpg; do ext=${i##*.}; name=$(basename "$i" ".$ext" | tr '[a-z]' '[A-Z]').$ext; cp $i $name; done
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 06:25 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy