#!/bin/sh
for file in `ls`; do
echo "${file}"
done
↓こっちの方が良いです。
#!/bin/sh
for file in *; do
echo "${file}"
done
Go to list of users who liked
More than 5 years have passed since last update.
#!/bin/sh
for file in `ls`; do
echo "${file}"
done
↓こっちの方が良いです。
#!/bin/sh
for file in *; do
echo "${file}"
done
Register as a new user and use Qiita more conveniently
Go to list of users who liked