Magic Numbers #21
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
grep -B 20 "/dev/$device" # Why 20?
awk '{print $10}' # Why column 10?
Improvement: Use named constants:
readonly CEPH_CONTEXT_LINES=20
readonly SMART_TEMP_COLUMN=10