Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CAL
Distant Visualization
Commits
3bda46bb
Commit
3bda46bb
authored
Nov 10, 2018
by
Schopieray, Scott
Browse files
csv y<50
parent
d6ab82c8
Changes
1
Show whitespace changes
Inline
Side-by-side
createcsv.sh
0 → 100644
View file @
3bda46bb
#!/bin/bash
# this script generates a csv file for with a filename, increasing number from 1, and random number between 1 and 50
# Script written by College of Arts and Letters at Michigan State University http://edtech.cal.msu.edu/
echo
>
output.csv
count
=
1
YSCALE
=
50
find
*
-maxdepth
0
-name
"*.jpg"
-print0
|
\
(
while
read
-d
$'
\0
'
i
;
do
echo
\"
$i
\"
,
$(
echo
$i
|
sed
-e
s/[^0-9]//g
)
,
$((
$RANDOM
%
$YSCALE
))
>>
output.csv
;
count
=
$((
count+1
))
;
done
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment