3 lines
60 B
Bash
Executable File
3 lines
60 B
Bash
Executable File
#!/bin/sh
|
|
ls -l | awk '{ if ((NR + 1) % 2 == 0) print $0 }'
|