Reading around that portmaster(8) is the way to go, I am trying to do the switch from portupgrade(8). I got used to the command:
to check which ports need updating after running portsnap fetch update.
Now, in portmaster(8) I see:
but I do not know how to fix line wrapping and how to properly escape quotes, pipes etc. in my .tcshrc file. I would be grateful if someone who created this alias in tcshrc pasted me the line that works.
Code:
sudo portversion -v | grep needs
to check which ports need updating after running portsnap fetch update.
Now, in portmaster(8) I see:
Code:
Print only the ports that have available updates. This can be used as an
alias in your shell. Be sure to fix the line wrapping appropriately.
portmaster -L |
egrep -B1 '(ew|ort) version|Aborting|installed|dependencies|
IGNORE|marked|Reason:|MOVED|deleted|exist|update' | grep -v '^--'
but I do not know how to fix line wrapping and how to properly escape quotes, pipes etc. in my .tcshrc file. I would be grateful if someone who created this alias in tcshrc pasted me the line that works.