私のカリLinuxが正しく動作しません
$ls
Desktop Documents Music
$ls Desktop/
ベストアンサー1
デスクトップディレクトリ、音楽、文書を入力しcd
ないときに使用されます。ls
デスクトップディレクトリが空である可能性があるため、コマンドは何も返しません。
したがって、ホームディレクトリにあり、次の手順を実行します。
#This returns nothing if your Desktop directory is empty.
$ ls Desktop/
#Print your working directory.
$ pwd
``
So go into Desktop directory first using `cd Desktop`
then use `ls`. If your command returns nothing is is because your Desktop directory is empty.