8 lines
135 B
Bash
Executable file
8 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# ls with colors :)
|
|
ls "$@" | perl -pe '$i=$.;s//\e[3@{[$i++%7+1]}m/g'
|
|
|
|
# stop colors
|
|
echo -n "\033[m"
|
|
#echo -n -e "\033[m"
|