# Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. # \copyright # THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN # WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # # \file uniq.sh # \author (last) Behrouz NematiPour # \date (last) 18-Mar-2021 # \author (original) Behrouz NematiPour # \date (original) 18-Mar-2021 # \details This script finds the duplicate lines # which has been created mainly to detect duplicate registrations of models in MModel.h # to avoid the build errors. #!/bin/bash cat "$1" | sort | uniq -cd