September 2018
Beginner
186 pages
4h 30m
English
If you need a temporary file in your script to store data for the script's run, it can be tempting to assume a fixed path for the file in /tmp:
# Store the current date for later# Requires GNU/BSD `date` with non-POSIX %s formatdate +%s > /tmp/myscript-timestamp
/tmp exists on virtually all Unix systems, which makes it a popular choice. However, this approach has some risks:
Read now
Unlock full access