Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/ksh
while read line
do
year=$(expr substr "$line" 4 4)
month=$(expr substr "$line" 8 2)
day=$(expr substr "$line" 10 2)
echo rcp somefile remotehost:/$year/$month/$day/
done < filename.txt