blob: f77fe2d0fffcf3e530200222472dd040798695a2 (
plain) (
blame)
1
2
3
4
5
6
7
|
function ml_jps_to_SharePics -d "Copy all .jpg files in this directory to ~/Nextcloud/SharePics"
for file in *.jpg
cp $file ~/Nextcloud/SharePics
printf "copied %s to ~/Nextcloud/SharePics\n" $file
end
end
|