DEVOPS WITH WEBDEV
@devopswithwebdev
3.95K
subscribers
685
photos
10
videos
14
files
982
links
Download Telegram
Join
DEVOPS WITH WEBDEV
3.95K subscribers
DEVOPS WITH WEBDEV
https://www.linkedin.com/posts/praveen-singampalli_if-i-had-to-explain-pythons-os-module-in-share-7495678898047950849-_uSI/?utm_source=share&utm_medium=member_ios&rcm=ACoAACYrFeQBveJ0A7DrOIu2qMiRx4SjwY9ltNY
LinkedIn
If I had to explain Python’s os module in 1 minute, I’d explain it like this
Think of os as Python’s way of talking to your operating…
If I had to explain Python’s os module in 1 minute, I’d explain it like this
Think of os as Python’s way of talking to your operating system.
1) Navigate folders
os.getcwd() → Where am I?
os.chdir(path) → Move to another directory
os.listdir(path) → What’s…
DEVOPS WITH WEBDEV
https://www.linkedin.com/posts/praveen-singampalli_a-unique-way-to-study-linux-is-to-learn-it-activity-7496039712357494785-FiB2?utm_source=share&utm_medium=member_ios&rcm=ACoAACYrFeQBveJ0A7DrOIu2qMiRx4SjwY9ltNY
LinkedIn
A unique way to study Linux is to learn it through small practical missions,
not command lists. Try this progression:
1) Filesystem…
A unique way to study Linux is to learn it through small practical missions,
not command lists. Try this progression:
1) Filesystem navigation — pwd, ls -lah, cd, mkdir, touch, cp, mv, rm, find
2) Read/search files — cat, less, head, tail -f, grep, wc,…