date | disclaimer |
---|---|
2019-02-20 |
il seguente testo è la conversione in markdown del regolamento ANVUR pubblicato alla data indicata, potrebbe essere stato sostituito da una versione aggiornata. In ogni caso fa fede l'originale sul sito anvur.it (se ancora disponibile). Per facilitare il confronto con le precedenti versioni sono state apportate modifiche minori alla formattazione |
This file contains 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
#!/bin/bash | |
input=${1} | |
# skip first row, read tsv | |
sed 1d $input | while IFS=$'\t' read -r -a arry | |
do | |
echo "${arry[0]}" | |
echo "${arry[1]}" | |
echo "${arry[2]}" |