linux commands
The article provides a list of basic Linux commands useful for beginners. It covers commands related to file and directory management, file operations, viewing files, system information, and permissions. Each command is accompanied by a brief description of its function.
- ▪The 'pwd' command shows the current directory path.
- ▪The 'ls' command lists files and folders in the current directory.
- ▪The 'mkdir' command is used to create a new directory.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3947753) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Jatin Tiwari Posted on May 23 linux commands #linux #beginners #learning Some useful basic linux commands File & Directory Commands pwd → shows current directory path ls → lists files and folders ls -l → detailed list view cd foldername → change directory cd ..
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).