This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version 1.0 | |
| task untar { | |
| input { | |
| File archive | |
| } | |
| command <<< | |
| mkdir untar | |
| tar xf ~{archive} -C untar | |
| find untar -type f > filelist.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=_all-merged.pdf *.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gsutil -u anvil-tool-development du gs://fc-47de7dae-e8e6-429c-b760-b4ba49136eee > t2t.list.txt | |
| grep -v '/$' t2t.list.txt | awk '{split($2,a,"."); print a[length(a)], $1}' | grep -v 'gs:' | awk '{names[$1]++; sizes[$1]+=$2;} END{for (name in names) print name, names[name], sizes[name]}' | sort -nrk3 | head |
OlderNewer