To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used. Select below a type of object currently browsed in order to display its associated SWHID and permalink.
This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file. Select below a type of object currently browsed in order to generate citations for them.
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
rename_files.sh
#!/bin/bash
for f in results/*
do
datevar=$(date -r "$f" +"%a_%b_%d_%Y_%H_%M_%S")
datevar2=$(date -r "$f" +"%Y_%m_%d_%H_%M_%S_")
fname=$(basename "$f")
mv "$f" "results/$datevar2$fname"
done