3025 shaares
103 private links
103 private links
19 results
tagged
cli
These tools are not just useful, they are fun to use and can quickly add a lot to your toolbox.
rsync
Gocryptfs encrypts at the file level, so synchronization operations can work efficiently on each file.
Using Linux well means understanding what commands are available and what they're capable of doing for you. We have covered a lot of them on Opensource.com during 2019, and here are 10 favorites from the bunch.
wget http://wordpress.org/latest.tar.gz
tar xfz latest.tar.gz
mv wordpress/* ./
rmdir ./wordpress/
rm -f latest.tar.gz
!/bin/sh
FILE="/path/to/file"
/bin/cat <<EOM >$FILE
text1
text2
text3
text4
EOM