(not set) | |
Blog | (not set) |
Website | (not set) |
1
score
|
Remove all at jobs$ atq | sed 's_\([0-9]\{1,8\}\).*_\1_g' | xargs atrm |
1
score
|
Converts DD/MM/YYYY date format to ISO-8601 (YYYY-MM-DD)$ sed 's_\([0-9]\{1,2\}\)/\([0-9]\{1,2\}\)/\([0-9]\{4\}\)_\3-\2-\1_g' |