linux command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers linux command
# 1  
Old 05-29-2008
Question linux command

whats mean of ll -lart and ll -alrt ?
# 2  
Old 05-29-2008
ll is an alias for "ls" - type
Code:
man ls

and check out the switches. Both your commands should show the same result, because in most cases the order of switches or concatenating them doesn't matter.
# 3  
Old 05-29-2008
from the manuals:
Code:
       -a, --all
              do not hide entries starting with .

       -l     use a long listing format

       -r, --reverse
              reverse order while sorting

       -t     sort by modification time

# 4  
Old 05-29-2008
The alias ll is by no means standard, although some Linux distros for example have it in their default configuration.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Linux find command seems to not transmit all the result to the '-exec command'

Hello. From a script, a command for a test is use : find /home/user_install -maxdepth 1 -type f -newer /tmp/000_skel_file_deb ! -newer /tmp/000_skel_file_end -name '.bashrc' -o -name '.profile' -o -name '.gtkrc-2.0' -o -name '.i18n' -o -name '.inputrc' Tha command... (3 Replies)
Discussion started by: jcdole
3 Replies

2. UNIX for Beginners Questions & Answers

Simple sed command not working; could be a Mac/Linux vs. PC/Linux issue

Hello, I am on a Mac and trying to clean up some monthly files with a very simple SED: sed '3,10d;/<ACROSS>/,$d' input.txt > output.txt (from the input, delete lines 3 - 10; then delete from the line containing <ACROSS> to the end of the file) then output to output.txt Even when I try... (2 Replies)
Discussion started by: verbatim
2 Replies

3. Shell Programming and Scripting

Linux command needed

guys im new here and i need help with some linux commands. filea has keyword on each line identity aaa bbb ccc i have following commands. egrep 'www.identity' ~/home/m3 >~/home/lopo2 wc -l file ~/home/lopo2 say lopo2 has 44 lines then output saved is identity 44 (1 Reply)
Discussion started by: ahfze
1 Replies

4. Programming

how to use linux command in c++?

I wonder how can u use linux's command like "clear" in c++. (3 Replies)
Discussion started by: nishrestha
3 Replies

5. Shell Programming and Scripting

Linux Command Error for nawk command

Hi All We are migrating our projects from unix environment to linux. I tried running a install script which sets up my project, i.e. the directory structure and all. But in the middle of the script i started receiveing following error : nawk: command not found . So i need to know which... (1 Reply)
Discussion started by: vee_789
1 Replies

6. Shell Programming and Scripting

F1 in Linux command

Hi, In my root directory i have folder1, folder2, folder3. The folder1 has folder1.1, folder1.2, folder1.3 subdirectories. Similary folder2 has folder2.1, folder2.2, folder2.3 etc. Same for rest of the folders. I have many such folders like folder4, folder5.......upto folder30 in my root... (3 Replies)
Discussion started by: keshi
3 Replies

7. UNIX for Dummies Questions & Answers

ps command on linux

Hello everyone, Simple I think? The ps command on linux seem to cut off the full command and makes grep useless, unlike Solaris. Here is an example: Solaris ps -aef|grep blue larry 7111 1 0 Mar 26 ? 0:00 xterm -fg white -bg black -cr blue -j -s -sl 100 Linux ps -aef|grep blue ... (4 Replies)
Discussion started by: larry
4 Replies
Login or Register to Ask a Question