diff --git a/scripts/amd/cache_print.sh b/scripts/amd/cache_print.sh new file mode 100755 index 000000000..b9614df44 --- /dev/null +++ b/scripts/amd/cache_print.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +CACHED_FILES=$(find /root/.triton/cache/ -type f -name "*.*") + +for file in ${CACHED_FILES[@]}; do + echo "$file" + sed -i -e '$a\' $file + cat $file +done