$
をつけて渡せば良い。
t = "test"
!echo $t
# => test
pathlibで特定のディレクトリを捜査してループを回しながら、bashコマンドで処理するときなどに便利。
import pathlib
path = pathlib.Path('pass/to/files')
for file in path.iterdir():
!cp $file ~/ # ファイルをhomeディレクトリにコピーする
Go to list of users who liked
More than 5 years have passed since last update.
$
をつけて渡せば良い。
t = "test"
!echo $t
# => test
pathlibで特定のディレクトリを捜査してループを回しながら、bashコマンドで処理するときなどに便利。
import pathlib
path = pathlib.Path('pass/to/files')
for file in path.iterdir():
!cp $file ~/ # ファイルをhomeディレクトリにコピーする
Register as a new user and use Qiita more conveniently
Go to list of users who liked