Linux Fundamentals
by teckk from LinuxQuestions.org on (#4WBQH)
More good Linux tutorials.
Linux Fundamentals
https://www.funtoo.org/Linux_Fundamentals,_Part_1
https://www.funtoo.org/Linux_Fundamentals,_Part_2
https://www.funtoo.org/Linux_Fundamentals,_Part_3
https://www.funtoo.org/Linux_Fundamentals,_Part_4
If you want a local copy for own wiki then:
Code:agent="Mozilla/5.0"
url="https://www.funtoo.org/Linux_Fundamentals,_Part_1"
curl -A "$agent" "$url" -o Linux_Fund_1.html
#or
wget -U "$agent" "$url" -O Linux_Fund_1.htmlFor a local text copy of the pages:
Code:lynx -dump https://www.funtoo.org/Linux_Fundamentals,_Part_1 > Linux_Fund_1.txt
#or
html2text Linux_Fund_1.html > Linux_Fund_1.txt
#or
libreoffice --headless --nologo --writer --convert-to txt Linux_Fund_1.htmlIf you don't have any of those you can get a cruder text of the page with:
Code:wget -q https://www.funtoo.org/Linux_Fundamentals,_Part_1 -O - | sed -e 's/<[^>]*>//g' > Linux_Fund_1.txtOr use awk or grep or python....
Or use the save/print function of your web browser.


Linux Fundamentals
https://www.funtoo.org/Linux_Fundamentals,_Part_1
https://www.funtoo.org/Linux_Fundamentals,_Part_2
https://www.funtoo.org/Linux_Fundamentals,_Part_3
https://www.funtoo.org/Linux_Fundamentals,_Part_4
If you want a local copy for own wiki then:
Code:agent="Mozilla/5.0"
url="https://www.funtoo.org/Linux_Fundamentals,_Part_1"
curl -A "$agent" "$url" -o Linux_Fund_1.html
#or
wget -U "$agent" "$url" -O Linux_Fund_1.htmlFor a local text copy of the pages:
Code:lynx -dump https://www.funtoo.org/Linux_Fundamentals,_Part_1 > Linux_Fund_1.txt
#or
html2text Linux_Fund_1.html > Linux_Fund_1.txt
#or
libreoffice --headless --nologo --writer --convert-to txt Linux_Fund_1.htmlIf you don't have any of those you can get a cruder text of the page with:
Code:wget -q https://www.funtoo.org/Linux_Fundamentals,_Part_1 -O - | sed -e 's/<[^>]*>//g' > Linux_Fund_1.txtOr use awk or grep or python....
Or use the save/print function of your web browser.