from os import listdir for s in listdir('/bin'): if s[0] == '.': continue print(s)