Last active
April 30, 2021 07:30
-
-
Save real420og/c4fff2bb16e60eaa2e6fcb5a331464d3 to your computer and use it in GitHub Desktop.
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
# посчитать количество пробелов в файле | |
cat orderNumbers.txt | tr -cd " " | wc -m | |
# заменить , на пробелы в файле | |
sed -i -e 's/,/ /g' orderNumbers.txt | |
#удалить файлы и директории старше 60 минут | |
find ./ -mmin +60 -delete | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment