Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ls *[25-50].fits
  2. ls mjk00[25-50].fits
  3. ls mjk[0025-0050]*
  4. ls *[0025-0050]*
  5.  
  6. ls mjk00{25..50}.fits
  7.  
  8. ls mjk0{000..149}.fits
  9.  
  10. ls mjk002[56789].fits mjk00[34]?.fits
  11.  
  12. ls | sort -n | grep -E 'mjk00([2][5-9]|[3-4][0-9]|[5][0]).fits'
  13.  
  14. for i in $(seq 25 50 1) ; do ls --escape $(printf "mjk%04d*" $i) ||true; done
  15.  
  16. ls --escape mjk{0025..0050..1}* ||true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement