Select Edit> Line Operations> Sort Lines as Integer Ascending
Then press Ctrl-F and enter in the find field: ^(.*?)$\s+?^(?=.*^\1$)
Check “Regular expression” and select replace.
Sort, and delete duplicate lines in Notepad ++
Reply
Select Edit> Line Operations> Sort Lines as Integer Ascending
Then press Ctrl-F and enter in the find field: ^(.*?)$\s+?^(?=.*^\1$)
Check “Regular expression” and select replace.
To change all the directories to 755 (drwxr-xr-x):
find /mnt/storage -type d -exec chmod 755 {} \;
To change all the files to 644 (-rw-r–r–):
find /mnt/storage -type f -exec chmod 644 {} \;
To perform a full system update of all installed software run:
freebsd-update fetch freebsd-update install
To upgrade, run the following command and replace release with the one you want to upgrade to:
freebsd-update -r 12.0-RELEASE upgrade
Check https://www.freebsd.org for latest release version.