In order to get a list of all usernames and User IDs on your Amazon Linux, Ubuntu, Fedora, or any other Linux distribution you have to take a look at the /etc/passwd
Example: using cut command:# cut -d: -f-1,3 /etc/passwd
root:0
bin:1
daemon:2
adm:3
lp:4
sync:5
shutdown:6
halt:7
mail:8
operator:11
games:12
ftp:14
nobody:99
-d -> delimiter option
: -> is the delimter
-f -> is the field option
1 -> Username and 3 -> User ID

-
Have Questions? Post them here!
More Posts related to Bash,
- How to start or open a new bourne-again shell (bash) session on Windows using Command Line CMD
- How to create new user account in Windows bash
- Bash Hello World! Script Tutorial
- How to Compare Strings in Bash
- How to see Created Accessed Modified and Changed dates of a file using bash terminal command
- Command to Sort File In Reverse Order [Unix/Linux/macOS]
- Bash command to wait for seconds
- [fix] bash: ssh: command not found
- bash: netstat: command not found
- Know Bash shell version command
- List all Username and User ID using Bash Command
- How to use Autocomplete and Autosuggestion in Shell Commands
- How to know the current shell you are logged in?
- [Fix] bash: script.sh: /bin/bash^M: bad interpreter: No such file or directory
- 'pwd' is not recognized as an internal or external command, operable program or batch file. [Windows]
- How to Kill a port using bash terminal command?
- How to fix bash ping command not found error
- Install Bash Completion on macOS
- bash get year 2021 calendar
- How to check your IP using bash for Windows?
- Bash For Loop Example
- Fix bash: script.sh: Permission denied Error
More Posts:
- Replace new line with comma in Sublime Text Editor - Sublime-Text
- Convert SQL to CSV in Notepad++ - NotepadPlusPlus
- How to Configure Eclipse keymap in IntelliJ IDE - Android-Studio
- Java JDBC IN Clause Example with PreparedStatement MySQL - Java
- [Fix] Minecraft Error: A JNI error has occurred, please check your installation and try again - HowTos
- SharePoint An unexpected error has occurred - Correlation ID and PowerShell Merge-SPlogfile - SharePoint
- What is Android Toast.LENGTH_SHORT and Toast. LENGTH_LONG durations - Android
- Sort ls command by last modified date and time - Linux