From 077002598a885bbfaa9ce7245d66ed1308f63d24 Mon Sep 17 00:00:00 2001 From: Alexander Hosking Date: Sun, 5 Mar 2017 14:27:18 -0500 Subject: [PATCH] Add lf command to list files --- system/.alias | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system/.alias b/system/.alias index a7bf24c..20837e6 100644 --- a/system/.alias +++ b/system/.alias @@ -1,5 +1,6 @@ -alias ll="ls -la" +alias ll="ls -lah" alias ld="ls -ld */" +alias lf="find . -maxdepth 1 -type f -exec ls -lah \"{}\" \;" alias ..="cd .." alias ...="cd ../.."