09 Mar How to output only file names (with spaces) in ls -Al? by kayals in Linux, System Administration, UnixComments find ./ -printf "%f\n" or… for n in *; do printf '%s\n' "$n"; done Related posts:Extending a logical volume in a virtual machine - ESXiAdd static routes to Ubuntu under NetplanHow do I uninstall MySQL completely? Tags: cli,Linux