31개의 명령어를 찾았습니다
예제:
$ ls -la
예제:
$ cd /home/user
예제:
$ pwd
예제:
$ mkdir -p /path/to/directory
예제:
$ rmdir empty_directory
예제:
$ rm -rf directory
예제:
$ cp -r source destination
예제:
$ mv oldname newname
예제:
$ find /path -name '*.txt'
예제:
$ grep -r 'pattern' /path
예제:
$ chmod 755 file.sh
예제:
$ chown user:group file.txt
예제:
$ ps aux
예제:
$ top
예제:
$ htop
예제:
$ kill -9 1234
예제:
$ killall firefox
예제:
$ jobs
예제:
$ nohup command &
예제:
$ ping google.com
예제:
$ wget https://example.com/file.zip
예제:
$ curl -X POST https://api.example.com
예제:
$ ssh user@hostname
예제:
$ scp file.txt user@host:/path
예제:
$ netstat -tuln
예제:
$ df -h
예제:
$ du -sh /path
예제:
$ free -h
예제:
$ uname -a
예제:
$ uptime
예제:
$ whoami