Created SC2162 read without r w (markdown)

DavidPontient
2024-10-14 11:17:30 +02:00
parent 7f85c356c4
commit 671fd82985

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
#using cut command and wile loop
#cut -d ':' -f1,3,6 /etc/passwd
cut -d ':' -f1,3,6 /etc/passwd | while read line;do
echo "$line"
done