Google Play Billing Reports – modify csv to display only specific columns
To avoid having to do manual modifications to the csv file, we can use a script ready for this. cat PlayApps_202205.csv| csvcut "," 1 2 4 6 7 14 15…
To avoid having to do manual modifications to the csv file, we can use a script ready for this. cat PlayApps_202205.csv| csvcut "," 1 2 4 6 7 14 15…
du -xh / |grep '^\S*\+G'|sort -rn More info here.
Enable rc.local if missing sudo touch /etc/rc.local sudo chmod +x /etc/rc.local sudo systemctl start rc-local sudo systemctl status rc-local Insert Your script command into rc.local, my was like below. You can delete sample…
for f in *\ *; do mv "$f" "${f// /_}"; done