“CHMOD исполняемый файл” Ответ

Как сделать исполняемый файл .sh

chmod u+x <fileName>.sh
Excited Emu

CHMOD исполняемый файл

# Mark the file as executable
chmod +x filename.sh

# Then execute the file with
./filename.sh

### Suggestions
# 755 - Owner has all, and Group and Other can read and execute
# 700 - Owner has all
# 644 - Owner can read and write, and Group and Other can read
# 600 - Owner can read and write
# 777 and 666 are rarely used, except in /tmp.
AttractivePenguin

Ответы похожие на “CHMOD исполняемый файл”

Вопросы похожие на “CHMOD исполняемый файл”

Смотреть популярные ответы по языку

Смотреть другие языки программирования