Changes

From SME Server
Jump to navigationJump to search
383 bytes added ,  16:13, 27 October 2021
no edit summary
Line 9: Line 9:  
https://www.faststone.org/FSResizerDetail.htm
 
https://www.faststone.org/FSResizerDetail.htm
 
https://www.saashub.com/compare-image-resizer-for-windows-vs-multiple-image-resizer-net
 
https://www.saashub.com/compare-image-resizer-for-windows-vs-multiple-image-resizer-net
 +
 +
Grep without comments
 +
 +
https://unix.stackexchange.com/questions/60994/how-to-grep-lines-which-does-not-begin-with-or
 +
 +
<nowiki>grep '^[[:blank:]]*[^[:blank:]#;]' smb.conf
 +
grep -vxE '[[:blank:]]*([#;].*)?' smb.conf
 +
awk '$1 ~ /^[^;#]/' smb.conf
 +
cat /etc/samba/smb.conf | grep ^[^#\;]
 +
grep -v "^\s*[#\;]\|^\s*$" smb.conf
 +
grep -v "^\s*[#;]" any.conf | grep -v "^\s*$"
 +
</nowiki>
 +
 +
 +
    
==systemd notes==
 
==systemd notes==

Navigation menu