tarを使ってみたところ、次のエラーが発生しました。
$ tar --strip-components=1 xf /data/rvm-latest.tar.gz
tar: You must specify one of the `-Acdtrux' or `--test-label' options
Try `tar --help' or `tar --usage' for more information.
ベストアンサー1
これは、オプションの1つ(-Acdtrux)が他のオプションの前にコマンドラインに表示されることを意味します。
したがって、次のことを試してください。
tar x --strip-components=1 -f /data/rvm-latest.tar.gz