##// END OF EJS Templates
fix ls_alias for NetBSD as well
bsvh -
Show More
@@ -69,8 +69,8 b' def default_aliases():'
69 # things which are executable
69 # things which are executable
70 ('lx', 'ls -F -o --color %l | grep ^-..x'),
70 ('lx', 'ls -F -o --color %l | grep ^-..x'),
71 ]
71 ]
72 elif sys.platform.startswith('openbsd'):
72 elif sys.platform.startswith('openbsd') or sys.platform.startswith('netbsd'):
73 # OpenBSD
73 # OpenBSD, NetBSD
74 ls_aliases = [('ls', 'ls -F'),
74 ls_aliases = [('ls', 'ls -F'),
75 # long ls
75 # long ls
76 ('ll', 'ls -F -l'),
76 ('ll', 'ls -F -l'),
General Comments 0
You need to be logged in to leave comments. Login now