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 | |
# Add a missing timestamp to files with exiftool | |
# This happened when I had multiple photos without datetimeoriginal timestamp set. It broke my gallery. | |
# Little script adds timestamps to files that misses it but leaves it in files that has it already set. | |
# How to use it | |
# Place it in the folder where you have the photos/other files | |
# chmod +x efif-add-missing-ts.sh | |
# ./efif-add-missing-ts.sh . "2017:09:22 22:25:00" |
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
// Please see https://github.com/lukashino/i40e-symmetric-rss-rte-flow | |
// | |
// Created by lukashino | |
// | |
#include <signal.h> | |
#include <unistd.h> | |
#include <rte_ethdev.h> |