Linuxコマンド

背景
投稿者投稿者yosioいいね1お気に入り登録
プレイ回数204難易度(3.0) 60秒 英語 英字
順位 名前 スコア 称号 打鍵/秒 正誤率 時間(秒) 打鍵数 ミス 問題 日付
1 わらわらゴリゴリ 0 期待のニュービー 0.0 50.0% 60.0 5 5 0 2024/05/09

問題文

ふりがな非表示 ふりがな表示

(touch .bashrc)

touch .bashrc

(mv file dir)

mv file dir

(tar xzvf something.tgz)

tar xzvf something.tgz

(dmesg | grep dev)

dmesg | grep dev

(sudo apt update)

sudo apt update

(head -n 3 file.txt)

head -n 3 file.txt

(tail -f file.log | grep -2 ERROR)

tail -f file.log | grep -2 ERROR

(cat file | sort | uniq)

cat file | sort | uniq

(cat file | grep -e error -e worning)

cat file | grep -e error -e worning

(echo "hoge piyo" >> .bashrc)

echo "hoge piyo" >> .bashrc

(grep "hoge" -rl target_dir)

grep "hoge" -rl target_dir

(sudo apt install git)

sudo apt install git

(whereis hoge)

whereis hoge

(source ~/.bashrc)

source ~/.bashrc

(chmod +x hoge.py)

chmod +x hoge.py

(chmod -R 777 .)

chmod -R 777 .

(df -h)

df -h

(du -h)

du -h

(find dir/ -type f -name "*.png")

find dir/ -type f -name "*.png"

(ps aux)

ps aux

など

(env)

env

(find . -name "*.log" | xargs -p rm -fv)

find . -name "*.log" | xargs -p rm -fv

(find . -name "*.log" | xargs -i cp {} /tmp/.)

find . -name "*.log" | xargs -i cp {} /tmp/.

(ssh user@192.168.1.2)

ssh user@192.168.1.2

(mkdir -p dir1/dir2)

mkdir -p dir1/dir2

(cd $_)

cd $_

(sudo rm -rf /)

sudo rm -rf /

問題文を全て表示 一部のみ表示 誤字・脱字等の報告