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:Resetting root password in vCenter Server Appliance 6.5 - 7.xWhy You Should Be Using Supported PHP VersionsHow to resolve PHP7 deprecation notices Tags: cli,Linux